qa 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +284 -2
  3. data/app/controllers/qa/linked_data_terms_controller.rb +127 -0
  4. data/config/authorities/linked_data/agrovoc.json +61 -0
  5. data/config/authorities/linked_data/loc.json +46 -0
  6. data/config/authorities/linked_data/oclc_fast.json +78 -0
  7. data/config/initializers/linked_data_authorities.rb +17 -0
  8. data/config/routes.rb +3 -0
  9. data/lib/qa.rb +15 -0
  10. data/lib/qa/authorities.rb +2 -0
  11. data/lib/qa/authorities/base.rb +1 -1
  12. data/lib/qa/authorities/crossref.rb +16 -0
  13. data/lib/qa/authorities/crossref/generic_authority.rb +63 -0
  14. data/lib/qa/authorities/geonames.rb +2 -1
  15. data/lib/qa/authorities/linked_data.rb +10 -0
  16. data/lib/qa/authorities/linked_data/config.rb +80 -0
  17. data/lib/qa/authorities/linked_data/config/search_config.rb +170 -0
  18. data/lib/qa/authorities/linked_data/config/term_config.rb +186 -0
  19. data/lib/qa/authorities/linked_data/find_term.rb +148 -0
  20. data/lib/qa/authorities/linked_data/generic_authority.rb +49 -0
  21. data/lib/qa/authorities/linked_data/rdf_helper.rb +102 -0
  22. data/lib/qa/authorities/linked_data/search_query.rb +143 -0
  23. data/lib/qa/version.rb +1 -1
  24. data/spec/controllers/linked_data_terms_controller_spec.rb +202 -0
  25. data/spec/fixtures/authorities/linked_data/lod_full_config.json +111 -0
  26. data/spec/fixtures/authorities/linked_data/lod_lang_defaults.json +54 -0
  27. data/spec/fixtures/authorities/linked_data/lod_lang_multi_defaults.json +54 -0
  28. data/spec/fixtures/authorities/linked_data/lod_lang_no_defaults.json +52 -0
  29. data/spec/fixtures/authorities/linked_data/lod_lang_param.json +66 -0
  30. data/spec/fixtures/authorities/linked_data/lod_min_config.json +49 -0
  31. data/spec/fixtures/authorities/linked_data/lod_search_only_config.json +55 -0
  32. data/spec/fixtures/authorities/linked_data/lod_sort.json +27 -0
  33. data/spec/fixtures/authorities/linked_data/lod_term_only_config.json +59 -0
  34. data/spec/fixtures/funders-find-response.json +1 -0
  35. data/spec/fixtures/funders-noquery.json +1 -0
  36. data/spec/fixtures/funders-noresults.json +1 -0
  37. data/spec/fixtures/funders-result.json +1 -0
  38. data/spec/fixtures/journals-find-response-two-issn.json +1 -0
  39. data/spec/fixtures/journals-find-response.json +1 -0
  40. data/spec/fixtures/journals-noquery.json +1 -0
  41. data/spec/fixtures/journals-noresults.json +1 -0
  42. data/spec/fixtures/journals-result.json +705 -0
  43. data/spec/fixtures/lod_agrovoc_query_many_results.json +1 -0
  44. data/spec/fixtures/lod_agrovoc_query_no_results.json +1 -0
  45. data/spec/fixtures/lod_agrovoc_term_found.rdf.xml +217 -0
  46. data/spec/fixtures/lod_lang_search_en.rdf.xml +42 -0
  47. data/spec/fixtures/lod_lang_search_enfr.rdf.xml +48 -0
  48. data/spec/fixtures/lod_lang_search_enfrde.rdf.xml +54 -0
  49. data/spec/fixtures/lod_lang_search_fr.rdf.xml +42 -0
  50. data/spec/fixtures/lod_lang_term_en.rdf.xml +65 -0
  51. data/spec/fixtures/lod_lang_term_enfr.rdf.xml +71 -0
  52. data/spec/fixtures/lod_lang_term_enfr_noalt.rdf.xml +69 -0
  53. data/spec/fixtures/lod_lang_term_enfrde.rdf.xml +79 -0
  54. data/spec/fixtures/lod_lang_term_fr.rdf.xml +65 -0
  55. data/spec/fixtures/lod_loc_term_found.rdf.xml +262 -0
  56. data/spec/fixtures/lod_oclc_all_query_3_results.rdf.xml +142 -0
  57. data/spec/fixtures/lod_oclc_personalName_query_3_results.rdf.xml +128 -0
  58. data/spec/fixtures/lod_oclc_query_no_results.rdf.xml +13 -0
  59. data/spec/fixtures/lod_oclc_term_found.rdf.xml +51 -0
  60. data/spec/lib/authorities/crossref_spec.rb +180 -0
  61. data/spec/lib/authorities/geonames_spec.rb +2 -2
  62. data/spec/lib/authorities/linked_data/config_spec.rb +143 -0
  63. data/spec/lib/authorities/linked_data/find_term_spec.rb +5 -0
  64. data/spec/lib/authorities/linked_data/generic_authority_spec.rb +580 -0
  65. data/spec/lib/authorities/linked_data/search_config_spec.rb +385 -0
  66. data/spec/lib/authorities/linked_data/search_query_spec.rb +79 -0
  67. data/spec/lib/authorities/linked_data/term_config_spec.rb +419 -0
  68. data/spec/routing/linked_data_route_spec.rb +35 -0
  69. data/spec/spec_helper.rb +2 -0
  70. metadata +184 -39
@@ -0,0 +1,54 @@
1
+ {
2
+ "term": {
3
+ "url": {
4
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
5
+ "@type": "IriTemplate",
6
+ "template": "http://localhost/test_default/term/{?term_id}",
7
+ "variableRepresentation": "BasicRepresentation",
8
+ "mapping": [
9
+ {
10
+ "@type": "IriTemplateMapping",
11
+ "variable": "term_id",
12
+ "property": "hydra:freetextQuery",
13
+ "required": true
14
+ }
15
+ ]
16
+ },
17
+ "qa_replacement_patterns": {
18
+ "term_id": "term_id"
19
+ },
20
+ "term_id": "ID",
21
+ "language": [ "en" ],
22
+ "results": {
23
+ "id_predicate": "http://id.loc.gov/vocabulary/identifiers/lccn",
24
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
25
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel"
26
+ }
27
+ },
28
+ "search": {
29
+ "url": {
30
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
31
+ "@type": "IriTemplate",
32
+ "template": "http://localhost/test_default/search?query={?query}",
33
+ "variableRepresentation": "BasicRepresentation",
34
+ "mapping": [
35
+ {
36
+ "@type": "IriTemplateMapping",
37
+ "variable": "query",
38
+ "property": "hydra:freetextQuery",
39
+ "required": true
40
+ }
41
+ ]
42
+ },
43
+ "qa_replacement_patterns": {
44
+ "query": "query"
45
+ },
46
+ "language": [ "en" ],
47
+ "results": {
48
+ "id_predicate": "http://purl.org/dc/terms/identifier",
49
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
50
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel",
51
+ "sort_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel"
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "term": {
3
+ "url": {
4
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
5
+ "@type": "IriTemplate",
6
+ "template": "http://localhost/test_default/term/{?term_id}",
7
+ "variableRepresentation": "BasicRepresentation",
8
+ "mapping": [
9
+ {
10
+ "@type": "IriTemplateMapping",
11
+ "variable": "term_id",
12
+ "property": "hydra:freetextQuery",
13
+ "required": true
14
+ }
15
+ ]
16
+ },
17
+ "qa_replacement_patterns": {
18
+ "term_id": "term_id"
19
+ },
20
+ "term_id": "ID",
21
+ "language": [ "en", "fr" ],
22
+ "results": {
23
+ "id_predicate": "http://purl.org/dc/terms/identifier",
24
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
25
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel"
26
+ }
27
+ },
28
+ "search": {
29
+ "url": {
30
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
31
+ "@type": "IriTemplate",
32
+ "template": "http://localhost/test_default/search?query={?query}",
33
+ "variableRepresentation": "BasicRepresentation",
34
+ "mapping": [
35
+ {
36
+ "@type": "IriTemplateMapping",
37
+ "variable": "query",
38
+ "property": "hydra:freetextQuery",
39
+ "required": true
40
+ }
41
+ ]
42
+ },
43
+ "qa_replacement_patterns": {
44
+ "query": "query"
45
+ },
46
+ "language": [ "en", "fr" ],
47
+ "results": {
48
+ "id_predicate": "http://purl.org/dc/terms/identifier",
49
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
50
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel",
51
+ "sort_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel"
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "term": {
3
+ "url": {
4
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
5
+ "@type": "IriTemplate",
6
+ "template": "http://localhost/test_no_default/term/{?term_id}",
7
+ "variableRepresentation": "BasicRepresentation",
8
+ "mapping": [
9
+ {
10
+ "@type": "IriTemplateMapping",
11
+ "variable": "term_id",
12
+ "property": "hydra:freetextQuery",
13
+ "required": true
14
+ }
15
+ ]
16
+ },
17
+ "qa_replacement_patterns": {
18
+ "term_id": "term_id"
19
+ },
20
+ "term_id": "ID",
21
+ "results": {
22
+ "id_predicate": "http://id.loc.gov/vocabulary/identifiers/lccn",
23
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
24
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel"
25
+ }
26
+ },
27
+ "search": {
28
+ "url": {
29
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
30
+ "@type": "IriTemplate",
31
+ "template": "http://localhost/test_no_default/search?query={?query}",
32
+ "variableRepresentation": "BasicRepresentation",
33
+ "mapping": [
34
+ {
35
+ "@type": "IriTemplateMapping",
36
+ "variable": "query",
37
+ "property": "hydra:freetextQuery",
38
+ "required": true
39
+ }
40
+ ]
41
+ },
42
+ "qa_replacement_patterns": {
43
+ "query": "query"
44
+ },
45
+ "results": {
46
+ "id_predicate": "http://purl.org/dc/terms/identifier",
47
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
48
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel",
49
+ "sort_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel"
50
+ }
51
+ }
52
+ }
@@ -0,0 +1,66 @@
1
+ {
2
+ "term": {
3
+ "url": {
4
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
5
+ "@type": "IriTemplate",
6
+ "template": "http://localhost/test_replacement/term/{?term_id}?lang={?lang}",
7
+ "variableRepresentation": "BasicRepresentation",
8
+ "mapping": [
9
+ {
10
+ "@type": "IriTemplateMapping",
11
+ "variable": "term_id",
12
+ "property": "hydra:freetextQuery",
13
+ "required": true
14
+ },
15
+ {
16
+ "@type": "IriTemplateMapping",
17
+ "variable": "lang",
18
+ "property": "hydra:freetextQuery",
19
+ "required": false,
20
+ "default": "en"
21
+ }
22
+ ]
23
+ },
24
+ "qa_replacement_patterns": {
25
+ "term_id": "term_id"
26
+ },
27
+ "term_id": "ID",
28
+ "results": {
29
+ "id_predicate": "http://id.loc.gov/vocabulary/identifiers/lccn",
30
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
31
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel"
32
+ }
33
+ },
34
+ "search": {
35
+ "url": {
36
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
37
+ "@type": "IriTemplate",
38
+ "template": "http://localhost/test_replacement/search?query={?query}&lang={?lang}",
39
+ "variableRepresentation": "BasicRepresentation",
40
+ "mapping": [
41
+ {
42
+ "@type": "IriTemplateMapping",
43
+ "variable": "query",
44
+ "property": "hydra:freetextQuery",
45
+ "required": true
46
+ },
47
+ {
48
+ "@type": "IriTemplateMapping",
49
+ "variable": "lang",
50
+ "property": "hydra:freetextQuery",
51
+ "required": false,
52
+ "default": "en"
53
+ }
54
+ ]
55
+ },
56
+ "qa_replacement_patterns": {
57
+ "query": "query"
58
+ },
59
+ "results": {
60
+ "id_predicate": "http://purl.org/dc/terms/identifier",
61
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
62
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel",
63
+ "sort_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel"
64
+ }
65
+ }
66
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "term": {
3
+ "url": {
4
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
5
+ "@type": "IriTemplate",
6
+ "template": "http://localhost/test_default/term/{?term_id}",
7
+ "variableRepresentation": "BasicRepresentation",
8
+ "mapping": [
9
+ {
10
+ "@type": "IriTemplateMapping",
11
+ "variable": "term_id",
12
+ "property": "hydra:freetextQuery",
13
+ "required": true
14
+ }
15
+ ]
16
+ },
17
+ "qa_replacement_patterns": {
18
+ "term_id": "term_id"
19
+ },
20
+ "term_id": "URI",
21
+ "results": {
22
+ "id_predicate": "http://id.loc.gov/vocabulary/identifiers/lccn",
23
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel"
24
+ }
25
+ },
26
+ "search": {
27
+ "url": {
28
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
29
+ "@type": "IriTemplate",
30
+ "template": "http://localhost/test_default/search?query={?query}",
31
+ "variableRepresentation": "BasicRepresentation",
32
+ "mapping": [
33
+ {
34
+ "@type": "IriTemplateMapping",
35
+ "variable": "query",
36
+ "property": "hydra:freetextQuery",
37
+ "required": true
38
+ }
39
+ ]
40
+ },
41
+ "qa_replacement_patterns": {
42
+ "query": "query"
43
+ },
44
+ "results": {
45
+ "id_predicate": "http://purl.org/dc/terms/identifier",
46
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel"
47
+ }
48
+ }
49
+ }
@@ -0,0 +1,55 @@
1
+ {
2
+ "term": {},
3
+ "search": {
4
+ "url": {
5
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
6
+ "@type": "IriTemplate",
7
+ "template": "http://localhost/test_default/search?subauth={?subauth}&query={?query}&param1={?param1}&param2={?param2}",
8
+ "variableRepresentation": "BasicRepresentation",
9
+ "mapping": [
10
+ {
11
+ "@type": "IriTemplateMapping",
12
+ "variable": "query",
13
+ "property": "hydra:freetextQuery",
14
+ "required": true
15
+ },
16
+ {
17
+ "@type": "IriTemplateMapping",
18
+ "variable": "subauth",
19
+ "property": "hydra:freetextQuery",
20
+ "required": false,
21
+ "default": "names"
22
+ },
23
+ {
24
+ "@type": "IriTemplateMapping",
25
+ "variable": "param1",
26
+ "property": "hydra:freetextQuery",
27
+ "required": false,
28
+ "default": "delta"
29
+ },
30
+ {
31
+ "@type": "IriTemplateMapping",
32
+ "variable": "param2",
33
+ "property": "hydra:freetextQuery",
34
+ "required": false,
35
+ "default": "foxtrot"
36
+ }
37
+ ]
38
+ },
39
+ "language": [ "en" ],
40
+ "results": {
41
+ "id_predicate": "http://id.loc.gov/vocabulary/identifiers/lccn",
42
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
43
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel",
44
+ "sort_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel"
45
+ },
46
+ "subauthorities": {
47
+ "subjects": "subjects",
48
+ "names": "names",
49
+ "classification": "classification",
50
+ "child_subject": "childrensSubjects",
51
+ "genre": "genreForms",
52
+ "demographic": "demographicTerms"
53
+ }
54
+ }
55
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "term": {},
3
+ "search": {
4
+ "url": {
5
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
6
+ "@type": "IriTemplate",
7
+ "template": "http://localhost/test_sort/search?query={?query}",
8
+ "variableRepresentation": "BasicRepresentation",
9
+ "mapping": [
10
+ {
11
+ "@type": "IriTemplateMapping",
12
+ "variable": "query",
13
+ "property": "hydra:freetextQuery",
14
+ "required": true
15
+ }
16
+ ]
17
+ },
18
+ "qa_replacement_patterns": {
19
+ "query": "query"
20
+ },
21
+ "results": {
22
+ "id_predicate": "http://purl.org/dc/terms/identifier",
23
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
24
+ "sort_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel"
25
+ }
26
+ }
27
+ }
@@ -0,0 +1,59 @@
1
+ {
2
+ "term": {
3
+ "url": {
4
+ "@context": "http://www.w3.org/ns/hydra/context.jsonld",
5
+ "@type": "IriTemplate",
6
+ "template": "http://localhost/test_default/term/{?subauth}/{?term_id}?param1={?param1}&param2={?param2}",
7
+ "variableRepresentation": "BasicRepresentation",
8
+ "mapping": [
9
+ {
10
+ "@type": "IriTemplateMapping",
11
+ "variable": "term_id",
12
+ "property": "hydra:freetextQuery",
13
+ "required": true
14
+ },
15
+ {
16
+ "@type": "IriTemplateMapping",
17
+ "variable": "subauth",
18
+ "property": "hydra:freetextQuery",
19
+ "required": false,
20
+ "default": "term_sub2_name"
21
+ },
22
+ {
23
+ "@type": "IriTemplateMapping",
24
+ "variable": "param1",
25
+ "property": "hydra:freetextQuery",
26
+ "required": false,
27
+ "default": "alpha"
28
+ },
29
+ {
30
+ "@type": "IriTemplateMapping",
31
+ "variable": "param2",
32
+ "property": "hydra:freetextQuery",
33
+ "required": false,
34
+ "default": "beta"
35
+ }
36
+ ]
37
+ },
38
+ "qa_replacement_patterns": {
39
+ "term_id": "term_id",
40
+ "subauth": "subauth"
41
+ },
42
+ "term_id": "ID",
43
+ "language": [ "en" ],
44
+ "results": {
45
+ "id_predicate": "http://id.loc.gov/vocabulary/identifiers/lccn",
46
+ "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
47
+ "altlabel_predicate": "http://www.w3.org/2004/02/skos/core#altLabel",
48
+ "broader_predicate": "http://www.w3.org/2004/02/skos/core#broader",
49
+ "narrower_predicate": "http://www.w3.org/2004/02/skos/core#narrower",
50
+ "sameas_predicate": "http://www.w3.org/2004/02/skos/core#exactMatch"
51
+ },
52
+ "subauthorities": {
53
+ "term_sub1_key": "term_sub1_name",
54
+ "term_sub2_key": "term_sub2_name",
55
+ "term_sub3_key": "term_sub3_name"
56
+ }
57
+ },
58
+ "search": {}
59
+ }
@@ -0,0 +1 @@
1
+ {"status":"ok","message-type":"funder","message-version":"1.0.0","message":{"hierarchy-names":{"100011056":"British Society for Heart Failure"},"replaced-by":[],"work-count":0,"name":"British Society for Heart Failure","descendants":[],"descendant-work-count":0,"id":"100011056","tokens":["british","society","for","heart","failure","bsh"],"replaces":[],"uri":"http:\/\/dx.doi.org\/10.13039\/100011056","hierarchy":{"100011056":{}},"alt-names":["BSH"],"location":"United Kingdom"}}
@@ -0,0 +1 @@
1
+ {"status":"ok","message-type":"funder-list","message-version":"1.0.0","message":{"items-per-page":20,"query":{"start-index":0,"search-terms":""},"total-results":14200,"items":[{"id":"100000089","location":"United States","name":"Office of International Science and Engineering","alt-names":["Office of International Science & Engineering","OD\/OISE","OISE"],"uri":"http:\/\/dx.doi.org\/10.13039\/100000089","replaces":[],"replaced-by":[],"tokens":["office","of","international","science","and","engineering","office","of","international","science","&","and","engineering","od\/oise","oise"]},{"id":"100001355","location":"United States","name":"Levi Strauss and Co.","alt-names":["Levi Strauss & Co."],"uri":"http:\/\/dx.doi.org\/10.13039\/100001355","replaces":[],"replaced-by":[],"tokens":["levi","strauss","and","co","levi","strauss","&","and","co"]},{"id":"100005217","location":"United States","name":"National Center for Injury Prevention and Control","alt-names":["NCIPC","Injury Prevention & Control"],"uri":"http:\/\/dx.doi.org\/10.13039\/100005217","replaces":[],"replaced-by":[],"tokens":["national","center","for","injury","prevention","and","control","ncipc","injury","prevention","&","and","control"]},{"id":"100002863","location":"United States","name":"Nuts, Bolts & Thingamajigs Foundation","alt-names":["NBT"],"uri":"http:\/\/dx.doi.org\/10.13039\/100002863","replaces":[],"replaced-by":[],"tokens":["nuts","bolts","&","and","thingamajigs","foundation","nbt"]},{"id":"501100005625","location":"Greece","name":"Hellenic Center for Disease Control & Prevention","alt-names":["KEELPNO","HCDCP"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100005625","replaces":[],"replaced-by":[],"tokens":["hellenic","center","for","disease","control","&","and","prevention","keelpno","hcdcp"]},{"id":"100007872","location":"United Kingdom","name":"Bowel and Cancer Research","alt-names":["Bowel & Cancer Research"],"uri":"http:\/\/dx.doi.org\/10.13039\/100007872","replaces":[],"replaced-by":[],"tokens":["bowel","and","cancer","research","bowel","&","and","cancer","research"]},{"id":"100000145","location":"United States","name":"Division of Information and Intelligent Systems","alt-names":["IIS","Information & Intelligent Systems"],"uri":"http:\/\/dx.doi.org\/10.13039\/100000145","replaces":[],"replaced-by":[],"tokens":["division","of","information","and","intelligent","systems","iis","information","&","and","intelligent","systems"]},{"id":"100005447","location":"United States","name":"Office of Information and Resource Management","alt-names":["OIRM","Office of Information & Resource Management"],"uri":"http:\/\/dx.doi.org\/10.13039\/100005447","replaces":[],"replaced-by":[],"tokens":["office","of","information","and","resource","management","oirm","office","of","information","&","and","resource","management"]},{"id":"100009688","location":"United States","name":"Winterthur Museum, Garden and Library","alt-names":["Winterthur Museum, Garden & Library"],"uri":"http:\/\/dx.doi.org\/10.13039\/100009688","replaces":[],"replaced-by":[],"tokens":["winterthur","museum","garden","and","library","winterthur","museum","garden","&","and","library"]},{"id":"501100003522","location":"United Kingdom","name":"Crohn's and Colitis UK","alt-names":["Crohn's & Colitis UK"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100003522","replaces":[],"replaced-by":[],"tokens":["crohns","and","colitis","uk","crohns","&","and","colitis","uk"]},{"id":"100008462","location":"United States","name":"Hagley Museum and Library","alt-names":["Hagley Museum & Library"],"uri":"http:\/\/dx.doi.org\/10.13039\/100008462","replaces":[],"replaced-by":[],"tokens":["hagley","museum","and","library","hagley","museum","&","and","library"]},{"id":"100001071","location":"United States","name":"Paul and Carol David Foundation","alt-names":["Paul & Carol David Foundation"],"uri":"http:\/\/dx.doi.org\/10.13039\/100001071","replaces":[],"replaced-by":[],"tokens":["paul","and","carol","david","foundation","paul","&","and","carol","david","foundation"]},{"id":"100010183","location":"United States","name":"U.S. Army Medical Department Center and School","alt-names":["Army Medical Department Center and School","U.S. Army Medical Department Center & School","AMEDDC&S"],"uri":"http:\/\/dx.doi.org\/10.13039\/100010183","replaces":[],"replaced-by":[],"tokens":["us","army","medical","department","center","and","school","army","medical","department","center","and","school","us","army","medical","department","center","&","and","school","ameddc&","ands"]},{"id":"100000086","location":"United States","name":"Directorate for Mathematical and Physical Sciences","alt-names":["MPS","Directorate for Mathematical & Physical Sciences"],"uri":"http:\/\/dx.doi.org\/10.13039\/100000086","replaces":[],"replaced-by":[],"tokens":["directorate","for","mathematical","and","physical","sciences","mps","directorate","for","mathematical","&","and","physical","sciences"]},{"id":"501100007266","location":"Israel","name":"Arlene and Arnold Goldstein UAV and Satellite Division, Technion-Israel Institute of Technology","alt-names":["Arlene & Arnold Goldstein Center","Arlene & Arnold Goldstein UAV & Satellite Division, Technion-Israel Institute of Technology"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100007266","replaces":[],"replaced-by":[],"tokens":["arlene","and","arnold","goldstein","uav","and","satellite","division","technion","israel","institute","of","technology","arlene","&","and","arnold","goldstein","center","arlene","&","and","arnold","goldstein","uav","&","and","satellite","division","technion","israel","institute","of","technology"]},{"id":"100001564","location":"United States","name":"Counterterrorism & Security Education and Research Foundation","alt-names":["CTSERF"],"uri":"http:\/\/dx.doi.org\/10.13039\/100001564","replaces":[],"replaced-by":[],"tokens":["counterterrorism","&","and","security","education","and","research","foundation","ctserf"]},{"id":"501100006666","location":"Sweden","name":"Stiftelsen Ragnhild och Einar Lundstr\u00d6ms Minne","alt-names":["Foundation for the Memory of Ragnhild and Einar Lundstr\u00d6m","Ragnhild and Einar Lundstr\u00d6m's Memorial Foundation","Stiftelsen Ragnhild & Einar Lundstr\u00d6ms Minne"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100006666","replaces":[],"replaced-by":[],"tokens":["stiftelsen","ragnhild","och","einar","lundstr\u00f6ms","minne","foundation","for","the","memory","of","ragnhild","and","einar","lundstr\u00f6m","ragnhild","and","einar","lundstr\u00f6ms","memorial","foundation","stiftelsen","ragnhild","&","and","einar","lundstr\u00f6ms","minne"]},{"id":"100008142","location":"United States","name":"School of Aquatic and Fishery Sciences","alt-names":["SAFS","University of Washington School of Aquatic and Fishery Sciences","University of Washington School of Aquatic & Fishery Sciences","School of Aquatic & Fishery Sciences"],"uri":"http:\/\/dx.doi.org\/10.13039\/100008142","replaces":[],"replaced-by":[],"tokens":["school","of","aquatic","and","fishery","sciences","safs","university","of","washington","school","of","aquatic","and","fishery","sciences","university","of","washington","school","of","aquatic","&","and","fishery","sciences","school","of","aquatic","&","and","fishery","sciences"]},{"id":"100010319","location":"United States","name":"Shurl and Kay Curci Foundation","alt-names":["Shurl & Kay Curci Foundation"],"uri":"http:\/\/dx.doi.org\/10.13039\/100010319","replaces":[],"replaced-by":[],"tokens":["shurl","and","kay","curci","foundation","shurl","&","and","kay","curci","foundation"]},{"id":"100006134","location":"United States","name":"Office of Energy Efficiency and Renewable Energy","alt-names":["Office of Energy Efficiency & Renewable Energy","EERE"],"uri":"http:\/\/dx.doi.org\/10.13039\/100006134","replaces":[],"replaced-by":[],"tokens":["office","of","energy","efficiency","and","renewable","energy","office","of","energy","efficiency","&","and","renewable","energy","eere"]}]}}
@@ -0,0 +1 @@
1
+ {"status":"ok","message-type":"funder-list","message-version":"1.0.0","message":{"items-per-page":20,"query":{"start-index":0,"search-terms":"supercalafragalistic"},"total-results":0,"items":[]}}
@@ -0,0 +1 @@
1
+ {"status":"ok","message-type":"funder-list","message-version":"1.0.0","message":{"items-per-page":20,"query":{"start-index":0,"search-terms":"heart"},"total-results":51,"items":[{"id":"100011056","location":"United Kingdom","name":"British Society for Heart Failure","alt-names":["BSH"],"uri":"http:\/\/dx.doi.org\/10.13039\/100011056","replaces":[],"replaced-by":[],"tokens":["british","society","for","heart","failure","bsh"]},{"id":"100000050","location":"United States","name":"National Heart, Lung, and Blood Institute","alt-names":["NHLBI"],"uri":"http:\/\/dx.doi.org\/10.13039\/100000050","replaces":[],"replaced-by":[],"tokens":["national","heart","lung","and","blood","institute","nhlbi"]},{"id":"501100001516","location":"New Zealand","name":"National Heart Foundation of New Zealand","alt-names":[],"uri":"http:\/\/dx.doi.org\/10.13039\/501100001516","replaces":[],"replaced-by":[],"tokens":["national","heart","foundation","of","new","zealand"]},{"id":"501100000415","location":"Ireland","name":"Northern Ireland Chest, Heart and Stroke Association","alt-names":["NICHS"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100000415","replaces":[],"replaced-by":[],"tokens":["northern","ireland","chest","heart","and","stroke","association","nichs"]},{"id":"100002020","location":"United States","name":"Children's Heart Foundation","alt-names":["CHF"],"uri":"http:\/\/dx.doi.org\/10.13039\/100002020","replaces":[],"replaced-by":[],"tokens":["childrens","heart","foundation","chf"]},{"id":"100008171","location":"United States","name":"Minneapolis Heart Institute Foundation","alt-names":["MHIF"],"uri":"http:\/\/dx.doi.org\/10.13039\/100008171","replaces":[],"replaced-by":[],"tokens":["minneapolis","heart","institute","foundation","mhif"]},{"id":"100010619","location":"Canada","name":"University of Ottawa Heart Institute Foundation","alt-names":["UOHI"],"uri":"http:\/\/dx.doi.org\/10.13039\/100010619","replaces":[],"replaced-by":[],"tokens":["university","of","ottawa","heart","institute","foundation","uohi"]},{"id":"501100005773","location":"Switzerland","name":"Herzstiftung Olten","alt-names":["Olten Heart Foundation"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100005773","replaces":[],"replaced-by":[],"tokens":["herzstiftung","olten","olten","heart","foundation"]},{"id":"501100002393","location":"Saudi Arabia","name":"Saudi Heart Association","alt-names":["SHA"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100002393","replaces":[],"replaced-by":[],"tokens":["saudi","heart","association","sha"]},{"id":"501100001470","location":"Singapore","name":"Singapore Heart Foundation","alt-names":["SHF"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100001470","replaces":[],"replaced-by":[],"tokens":["singapore","heart","foundation","shf"]},{"id":"501100000850","location":"United Kingdom","name":"National Heart and Lung Institute","alt-names":["NHLI"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100000850","replaces":[],"replaced-by":[],"tokens":["national","heart","and","lung","institute","nhli"]},{"id":"501100002996","location":"Netherlands","name":"Hartstichting","alt-names":["Dutch Heart Foundation"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100002996","replaces":[],"replaced-by":[],"tokens":["hartstichting","dutch","heart","foundation"]},{"id":"501100003094","location":"Germany","name":"F\u00f6rdergemeinschaft Deutsche Kinderherzzentren","alt-names":["German Children's Heart Centers"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100003094","replaces":[],"replaced-by":[],"tokens":["f\u00f6rdergemeinschaft","deutsche","kinderherzzentren","german","childrens","heart","centers"]},{"id":"100000968","location":"United States","name":"American Heart Association","alt-names":["AHA","American Heart Association, Inc."],"uri":"http:\/\/dx.doi.org\/10.13039\/100000968","replaces":[],"replaced-by":[],"tokens":["american","heart","association","aha","american","heart","association","inc"]},{"id":"501100003793","location":"Sweden","name":"Hj\u00e4rt-Lungfonden","alt-names":["Swedish Heart-Lung Foundation"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100003793","replaces":[],"replaced-by":[],"tokens":["hj\u00e4rt","lungfonden","swedish","heart","lung","foundation"]},{"id":"501100001208","location":"Australia","name":"Heart Research Institute","alt-names":["HRI"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100001208","replaces":[],"replaced-by":[],"tokens":["heart","research","institute","hri"]},{"id":"100005936","location":"United States","name":"International Society for Heart and Lung Transplants","alt-names":["ISHLT"],"uri":"http:\/\/dx.doi.org\/10.13039\/100005936","replaces":[],"replaced-by":[],"tokens":["international","society","for","heart","and","lung","transplants","ishlt"]},{"id":"501100001030","location":"Australia","name":"National Heart Foundation of Australia","alt-names":["Heart Foundation"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100001030","replaces":[],"replaced-by":[],"tokens":["national","heart","foundation","of","australia","heart","foundation"]},{"id":"501100000274","location":"United Kingdom","name":"British Heart Foundation","alt-names":["BHF"],"uri":"http:\/\/dx.doi.org\/10.13039\/501100000274","replaces":[],"replaced-by":[],"tokens":["british","heart","foundation","bhf"]},{"id":"100006795","location":"United States","name":"Heart Failure Society of America","alt-names":[],"uri":"http:\/\/dx.doi.org\/10.13039\/100006795","replaces":[],"replaced-by":[],"tokens":["heart","failure","society","of","america"]}]}}
@@ -0,0 +1 @@
1
+ {"status":"ok","message-type":"journal","message-version":"1.0.0","message":{"title":"Circulation Heart Failure","publisher":"Ovid Technologies Wolters Kluwer -American Heart Association","ISSN":["1941-3289","1941-3297"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null}}
@@ -0,0 +1 @@
1
+ {"status":"ok","message-type":"journal","message-version":"1.0.0","message":{"title":"Bangladesh Heart Journal","publisher":"Bangladesh Journals Online","ISSN":["1024-8714"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null}}
@@ -0,0 +1 @@
1
+ {"status":"ok","message-type":"journal-list","message-version":"1.0.0","message":{"items-per-page":20,"query":{"start-index":0,"search-terms":""},"total-results":52135,"items":[{"title":"-Quinone Imide Reactions","publisher":"Thieme Publishing Group","ISSN":["2040-0233"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"-Selective Additions","publisher":"Thieme Publishing Group","ISSN":["2020-0420"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"-Selective and Unsubstituted Nitro-Mannich Reactions","publisher":"Thieme Publishing Group","ISSN":["2020-0447"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Divers !","publisher":"Universidade Federal do Parana","ISSN":["1983-8921"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Volume !","publisher":"OpenEdition","ISSN":["1634-5495","1950-568X"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Global Journal of Science Frontier Research A Physics # Space Science","publisher":"\"Science and Education, Ltd.\"","ISSN":["2249-4626"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Natural Products Chemistry & Research","publisher":"OMICS Publishing Group","ISSN":[],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Natural Products Chemistry & Research","publisher":"OMICS Publishing Group","ISSN":[],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Anthropology & Archeology of Eurasia","publisher":"Informa UK (Taylor & Francis)","ISSN":["1061-1959"],"flags":{"deposits-orcids-current":false,"deposits":true,"deposits-update-policies-backfile":false,"deposits-award-numbers-current":false,"deposits-resource-links-current":false,"deposits-articles":true,"deposits-funders-current":false,"deposits-references-backfile":true,"deposits-licenses-backfile":false,"deposits-award-numbers-backfile":false,"deposits-references-current":true,"deposits-resource-links-backfile":false,"deposits-orcids-backfile":false,"deposits-funders-backfile":false,"deposits-update-policies-current":true,"deposits-licenses-current":false},"coverage":{"funders-backfile":0.0,"licenses-backfile":0.0,"funders-current":0.0,"resource-links-backfile":0.0,"orcids-backfile":0.0,"update-policies-current":0.8461538553237915,"orcids-current":0.0,"references-backfile":0.14132553339004517,"award-numbers-backfile":0.0,"update-policies-backfile":0.0,"licenses-current":0.0,"award-numbers-current":0.0,"resource-links-current":0.0,"references-current":0.5384615659713745},"breakdowns":{"dois-by-issued-year":[[2006,30],[1997,29],[1994,29],[1996,28],[1995,28],[1990,28],[2012,27],[1963,27],[2014,26],[1999,25],[2013,24],[2008,24],[2007,24],[2002,24],[1993,24],[1987,24],[2010,23],[2001,23],[2000,23],[1962,23],[1981,22],[1967,22],[2011,21],[2009,21],[1998,21],[1988,21],[1979,21],[1992,20],[1989,20],[1986,20],[1964,20],[1982,19],[1968,19],[1965,19],[1983,18],[1977,18],[1975,18],[1974,18],[1976,17],[1966,17],[1973,16],[2003,15],[1985,15],[1971,15],[1969,15],[1984,14],[1972,14],[1970,12],[1978,10],[1991,7],[1980,5],[2004,4],[2005,1]]},"counts":{"total-dois":1052,"current-dois":26,"backfile-dois":1026},"last-status-check-time":1459490464046},{"title":"Antiviral Chemistry & Chemotherapy","publisher":"SAGE Publications","ISSN":["0956-3202"],"flags":{"deposits-orcids-current":false,"deposits":true,"deposits-update-policies-backfile":false,"deposits-award-numbers-current":false,"deposits-resource-links-current":false,"deposits-articles":true,"deposits-funders-current":false,"deposits-references-backfile":false,"deposits-licenses-backfile":false,"deposits-award-numbers-backfile":false,"deposits-references-current":false,"deposits-resource-links-backfile":false,"deposits-orcids-backfile":false,"deposits-funders-backfile":false,"deposits-update-policies-current":false,"deposits-licenses-current":false},"coverage":{"funders-backfile":0.0,"licenses-backfile":0.0,"funders-current":0.0,"resource-links-backfile":0.0,"orcids-backfile":0.0,"update-policies-current":0.0,"orcids-current":0.0,"references-backfile":0.0,"award-numbers-backfile":0.0,"update-policies-backfile":0.0,"licenses-current":0.0,"award-numbers-current":0.0,"resource-links-current":0.0,"references-current":0.0},"breakdowns":{"dois-by-issued-year":[[1997,63],[1995,57],[1994,56],[1993,52],[1990,51],[1996,48],[1992,47],[1991,45],[1998,44],[2000,38],[2007,37],[2005,36],[2001,36],[2006,35],[2002,35],[2004,34],[2003,34],[1999,32],[2008,15],[2009,13],[2015,10],[2010,10],[2011,8],[2016,2]]},"counts":{"total-dois":838,"current-dois":12,"backfile-dois":826},"last-status-check-time":1459490464193},{"title":"Natural Products Chemistry & Research","publisher":"OMICS Publishing Group","ISSN":[],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Natural Products Chemistry & Research","publisher":"OMICS Publishing Group","ISSN":[],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Clinical & Medical Biochemistry Open Access","publisher":"OMICS Publishing Group","ISSN":["2471-2663"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Arthritis Research & Therapy","publisher":"Springer (Biomed Central Ltd.)","ISSN":["1478-6354"],"flags":{"deposits-orcids-current":true,"deposits":true,"deposits-update-policies-backfile":false,"deposits-award-numbers-current":true,"deposits-resource-links-current":false,"deposits-articles":true,"deposits-funders-current":true,"deposits-references-backfile":true,"deposits-licenses-backfile":false,"deposits-award-numbers-backfile":false,"deposits-references-current":true,"deposits-resource-links-backfile":false,"deposits-orcids-backfile":false,"deposits-funders-backfile":false,"deposits-update-policies-current":true,"deposits-licenses-current":false},"coverage":{"funders-backfile":0.0,"licenses-backfile":0.0,"funders-current":0.05228758230805397,"resource-links-backfile":0.0,"orcids-backfile":0.0,"update-policies-current":1.0,"orcids-current":0.0021786491852253675,"references-backfile":0.36664044857025146,"award-numbers-backfile":0.0,"update-policies-backfile":0.0,"licenses-current":0.0,"award-numbers-current":0.019607843831181526,"resource-links-current":0.0,"references-current":0.9978213310241699},"breakdowns":{"dois-by-issued-year":[[2012,500],[2015,366],[2014,356],[2010,327],[2011,322],[2009,312],[2013,292],[2006,238],[2007,227],[2008,220],[2005,104]]},"counts":{"total-dois":3001,"current-dois":459,"backfile-dois":2542},"last-status-check-time":1459490466825},{"title":"Nutrition & Food Science International journal","publisher":"Juniper Publishers","ISSN":["2474-767X"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Natural Products Chemistry & Research","publisher":"OMICS Publishing Group","ISSN":[],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Kairos Journal of Philosophy & Science","publisher":"Walter de Gruyter GmbH","ISSN":["1647-659X"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Journal of Microbiology & Microbial Technology","publisher":"Avens Publishing Group","ISSN":["2474-4530"],"flags":null,"coverage":null,"breakdowns":null,"counts":null,"last-status-check-time":null},{"title":"Biology of Mood & Anxiety Disorders","publisher":"Springer (Biomed Central Ltd.)","ISSN":["2045-5380"],"flags":{"deposits-orcids-current":false,"deposits":true,"deposits-update-policies-backfile":false,"deposits-award-numbers-current":false,"deposits-resource-links-current":false,"deposits-articles":true,"deposits-funders-current":false,"deposits-references-backfile":true,"deposits-licenses-backfile":false,"deposits-award-numbers-backfile":false,"deposits-references-current":true,"deposits-resource-links-backfile":false,"deposits-orcids-backfile":false,"deposits-funders-backfile":false,"deposits-update-policies-current":true,"deposits-licenses-current":false},"coverage":{"funders-backfile":0.0,"licenses-backfile":0.0,"funders-current":0.0,"resource-links-backfile":0.0,"orcids-backfile":0.0,"update-policies-current":1.0,"orcids-current":0.0,"references-backfile":0.8392857313156128,"award-numbers-backfile":0.0,"update-policies-backfile":0.0,"licenses-current":0.0,"award-numbers-current":0.0,"resource-links-current":0.0,"references-current":1.0},"breakdowns":{"dois-by-issued-year":[[2013,22],[2012,22],[2014,15],[2011,12],[2015,4]]},"counts":{"total-dois":63,"current-dois":7,"backfile-dois":56},"last-status-check-time":1459490468898},{"title":"Brain & Neurorehabilitation","publisher":"Korean Society for Neurorehabilitation (KAMJE)","ISSN":["1976-8753"],"flags":{"deposits-orcids-current":false,"deposits":true,"deposits-update-policies-backfile":false,"deposits-award-numbers-current":false,"deposits-resource-links-current":true,"deposits-articles":true,"deposits-funders-current":false,"deposits-references-backfile":true,"deposits-licenses-backfile":true,"deposits-award-numbers-backfile":false,"deposits-references-current":true,"deposits-resource-links-backfile":true,"deposits-orcids-backfile":false,"deposits-funders-backfile":false,"deposits-update-policies-current":false,"deposits-licenses-current":false},"coverage":{"funders-backfile":0.0,"licenses-backfile":1.0,"funders-current":0.0,"resource-links-backfile":1.0,"orcids-backfile":0.0,"update-policies-current":0.0,"orcids-current":0.0,"references-backfile":1.0,"award-numbers-backfile":0.0,"update-policies-backfile":0.0,"licenses-current":0.0,"award-numbers-current":0.0,"resource-links-current":1.0,"references-current":1.0},"breakdowns":{"dois-by-issued-year":[[2014,24],[2011,22],[2015,19],[2012,15],[2013,14]]},"counts":{"total-dois":70,"current-dois":19,"backfile-dois":51},"last-status-check-time":1459490474437}]}}
@@ -0,0 +1 @@
1
+ {"status":"ok","message-type":"journal-list","message-version":"1.0.0","message":{"items-per-page":20,"query":{"start-index":0,"search-terms":"supercalafragalistic"},"total-results":0,"items":[]}}