forked from eclipse-pass/pass-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo_data.json
1694 lines (1694 loc) · 46.8 KB
/
demo_data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"op": "add",
"path": "/repository",
"value": {
"id": "0",
"type": "repository",
"attributes": {
"integrationType": "web-link",
"formSchema": "{\"id\":\"eric\",\"schema\":{\"title\":\"Department of Education - ERIC <br><small>Requires deposit to Education Resource Information Center (ERIC).</small><br><br><p class=\"lead text-muted\">Automatic submission from PASS to ERIC is not available at this time. Instead, submission to ERIC will be prompted before this submission is finalized in PASS. The publication information collected so far can be used to complete the submission via the ERIC website.</p>\",\"type\":\"object\",\"properties\":{}},\"options\":{\"fields\":{}}}",
"name": "Educational Resources Information Center (ERIC)",
"url": "https://eric.ed.gov/",
"repositoryKey": "eric"
}
}
},
{
"op": "add",
"path": "/repository",
"value": {
"id": "1",
"type": "repository",
"attributes": {
"agreementText": "NON-EXCLUSIVE LICENSE FOR USE OF MATERIALS This non-exclusive license defines the terms for the deposit of Materials in all formats into the digital repository of materials collected, preserved and made available through the Johns Hopkins Digital Repository, JScholarship. The Contributor hereby grants to Johns Hopkins a royalty free, non-exclusive worldwide license to use, re-use, display, distribute, transmit, publish, re-publish or copy the Materials, either digitally or in print, or in any other medium, now or hereafter known, for the purpose of including the Materials hereby licensed in the collection of materials in the Johns Hopkins Digital Repository for educational use worldwide. In some cases, access to content may be restricted according to provisions established in negotiation with the copyright holder. This license shall not authorize the commercial use of the Materials by Johns Hopkins or any other person or organization, but such Materials shall be restricted to non-profit educational use. Persons may apply for commercial use by contacting the copyright holder. Copyright and any other intellectual property right in or to the Materials shall not be transferred by this agreement and shall remain with the Contributor, or the Copyright holder if different from the Contributor. Other than this limited license, the Contributor or Copyright holder retains all rights, title, copyright and other interest in the images licensed. If the submission contains material for which the Contributor does not hold copyright, the Contributor represents that s/he has obtained the permission of the Copyright owner to grant Johns Hopkins the rights required by this license, and that such third-party owned material is clearly identified and acknowledged within the text or content of the submission. If the submission is based upon work that has been sponsored or supported by an agency or organization other than Johns Hopkins, the Contributor represents that s/he has fulfilled any right of review or other obligations required by such contract or agreement. Johns Hopkins will not make any alteration, other than as allowed by this license, to your submission. This agreement embodies the entire agreement of the parties. No modification of this agreement shall be of any effect unless it is made in writing and signed by all of the parties to the agreement.",
"integrationType": "full",
"formSchema": "{\"id\":\"JScholarship\",\"schema\":{\"title\":\"Johns Hopkins - JScholarship <br><p class=\"lead text-muted\">Deposit requirements for JH\"s institutional repository JScholarship.</p>\",\"type\":\"object\",\"properties\":{\"authors\":{\"title\":\"<div class=\"row\"><div class=\"col-6\">Author(s) <small class=\"text-muted\">(required)</small></div><div class=\"col-6 p-0\"></div></div>\",\"type\":\"array\",\"uniqueItems\":true,\"items\":{\"type\":\"object\",\"properties\":{\"author\":{\"type\":\"string\",\"fieldClass\":\"body-text col-6 pull-left pl-0\"}}}}}},\"options\":{\"fields\":{\"authors\":{\"hidden\":false}}}}",
"name": "JScholarship",
"url": "https://jscholarship.library.jhu.edu/",
"repositoryKey": "jscholarship",
"schemas": [
"https://eclipse-pass.github.io/metadata-schemas/jhu/jscholarship.json",
"https://eclipse-pass.github.io/metadata-schemas/jhu/common.json"
]
}
}
},
{
"op": "add",
"path": "/repository",
"value": {
"id": "2",
"type": "repository",
"attributes": {
"integrationType": "web-link",
"formSchema": "{\"id\":\"dec\",\"schema\":{\"title\":\"United States Agency for International Development - DEC <br><small>Requires deposit to the Development Experience Clearingshouse (DEC).</small><br><br><p class=\"lead text-muted\">Automatic submission from PASS to ERIC is not available at this time. Instead, submission to DEC will be prompted before this submission is finalized in PASS. The publication information collected so far can be used to complete the submission via the DEC website.</p>\",\"type\":\"object\",\"properties\":{}},\"options\":{\"fields\":{}}}",
"name": "Development Experience Clearingshouse (DEC)",
"url": "https://dec.usaid.gov/",
"repositoryKey": "dec"
}
}
},
{
"op": "add",
"path": "/repository",
"value": {
"id": "3",
"type": "repository",
"attributes": {
"integrationType": "one-way",
"formSchema": "{\"id\":\"nih\",\"data\":{},\"schema\":{\"title\":\"NIH Manuscript Submission System (NIHMS) <br><p class=\"lead text-muted\">The following metadata fields will be part of the NIHMS submission.</p>\",\"type\":\"object\",\"properties\":{\"journal-NLMTA-ID\":{\"type\":\"string\"}}},\"options\":{\"fields\":{\"journal-NLMTA-ID\":{\"type\":\"text\",\"label\":\"Journal NLMTA ID\",\"placeholder\":\"\"}}}}",
"schemas": [
"https://eclipse-pass.github.io/metadata-schemas/jhu/nihms.json",
"https://eclipse-pass.github.io/metadata-schemas/jhu/common.json"
],
"name": "PubMed Central",
"url": "https://www.ncbi.nlm.nih.gov/pmc/",
"repositoryKey": "pmc"
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "0",
"type": "policy",
"attributes": {
"policyUrl": "https://provost.jhu.edu/about/open-access/",
"description": "The university expects that every scholarly article produced by full-time faculty members be accessible in an open access repository. This can be achieved through deposits into existing public access repositoryIds (such as PubMed Central, arXiv, etc.) and/or into Johns Hopkins institutional repository, JScholarship.",
"title": "Johns Hopkins University (JHU) Open Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "1",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "1",
"type": "policy",
"attributes": {
"policyUrl": "https://www.research.va.gov/resources/policies/public_access.cfm",
"description": "The VA requires its investigators to deposit manuscripts in PubMed Central, operated by the National Institutes of Health's National Library of Medicine (NLM), upon the manuscripts' acceptance for publication. Articles with a publication acceptance date of February 1, 2015, or later are to be included. Deposited manuscripts are made available to the public in PubMed Central no later than 12 months after their publication in a journal",
"title": "Department of Veteran Affairs Public Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "3",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "2",
"type": "policy",
"attributes": {
"policyUrl": "https://ies.ed.gov/funding/researchaccess.asp",
"description": "Department of Education requires awardees - grantees or contractors - who are receiving ED funding to carry out research, as well as ED emmployees who produce peer-reviewed scholarly publications, to submit their final peer-reviewed manuscripts to ERIC (Education Resource Information Center) when accepted for publication. Programmatic integration between PASS and ERIC is not available at this time, but a link to ERIC submission portal, along with publication metadata we have collected so far can be found at the end of the submission steps to help you start an article/manuscript submission in ERIC.",
"title": "Department of Education IES Policy Regarding Public Access to Research"
},
"relationships": {
"repositories": {
"data": [
{
"id": "0",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "3",
"type": "policy",
"attributes": {
"policyUrl": "https://www.ahrq.gov/funding/policies/publicaccess/index.html",
"description": "The AHRQ Public Access Policy requires that authors of scholarly publications submit the final peer-reviewed accepted journal manuscripts to PubMed Central (PMC). In lieu of the final peer-reviewed manuscript, AHRQ will accept the final published article, provided the awardee can ensure AHRQ has the rights to make the published version public.",
"title": "Agency for Healthcare Research and Quality Public Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "3",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "4",
"type": "policy",
"attributes": {
"policyUrl": "https://www.nasa.gov/sites/default/files/atoms/files/206985_2015_nasa_plan-for-web.pdf",
"description": "NASA-funded authors and co-authors (both civil servant and non-civil servant) are required to deposit copies of their peer-reviewed scientific publications and associated data into NASA's publication repository called NASA PubSpace, hosted by PubMed Central, through NIH's Manuscript Submission (NIHMS) System.",
"title": "National Aeronautics and Space Administration Public Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "3",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "5",
"type": "policy",
"attributes": {
"policyUrl": "https://publicaccess.nih.gov/policy.htm",
"description": "The Director of the National Institutes of Health requires that all investigators funded by the NIH submit or have submitted for them to the National Library of Medicine's PubMed Central an electronic version of their final, peer-reviewed manuscripts upon acceptance for publication, to be made publicly available no later than 12 months after the official date of publication. In lieu of the final peer-reviewed manuscript, NIH will accept the final published article, provided that the author has the right to submit this version.",
"title": "National Institutes of Health Public Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "3",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "6",
"type": "policy",
"attributes": {
"policyUrl": "https://www.fda.gov/downloads/AboutFDA/ReportsManualsForms/StaffManualGuides/UCM479268.pdf",
"description": "The FDA public access policy requires that all FDA-funded research findings published in a peer-reviewed article be made publicly available. The final published article must appear in the National Library of Medicine’s (NLM) PubMed Central (PMC) for free public access to the full-text of the final published article within 12 months of the publication date",
"title": "US Food and Drug Administration Public Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "3",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "7",
"type": "policy",
"attributes": {
"policyUrl": "https://www.hhmi.org/sites/default/files/About/Policies/sc320-public-access-to-publications.pdf",
"description": "HHMI strongly encourages all HHMI laboratory heads to publish their original, peer-reviewed research in journals that make publications freely available and downloadable on-line immediately after publication (i.e. open access journals). If a laboratory head chooses to publish an original, peer-reviewed research publication on which he or she is a major author in a journal that is not open access, the laboratory head is responsible for ensuring that the publication is freely available and downloadable on-line as soon as reasonably possible after publication, and in any event within twelve months of publication. \"Major author\" normally includes both the first and last authors; if a middle author is designated in the paper as the corresponding author, then that author is also considered to be a major author. In addition, if an HHMI laboratory head\"s original, peer-reviewed research publication is in a journal in the biological or biomedical sciences, the publication must be available through PubMed Central as soon as reasonably possible, and in any event within twelve months of publication",
"title": "Howard Hughes Medical Institute Public Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "3",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "8",
"type": "policy",
"attributes": {
"policyUrl": "https://www.acl.gov/sites/default/files/about-acl/2017-05/ACL-PublicAcccessPlan-Jan2016.pdf",
"description": "The ACL public access plan requires that all peer-reviewed publications generated from ACL-funded research be publicly available via PubMed Central (PMC) no later than 12 months after the official publication date. The peer-reviewed publications may be made available in either the final peer-reviewed article or final peer-reviewed manuscript format.",
"title": "Administration for Community Living Public Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "3",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "9",
"type": "policy",
"attributes": {
"policyUrl": "https://www.phe.gov/Preparedness/planning/science/Documents/AccessPlan.pdf",
"description": "ASPR will adapt the National Institutes of Health (NIH) Public Access Policy for eligible ASPR-funded research and require that ASPR-funded investigators submit an electronic version of final peer-reviewed journal manuscripts to the digital archive PubMed Central (PMC) upon acceptance for publication.",
"title": "Office of the Assistant Secretary for Preparedness and Response Public Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "3",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "10",
"type": "policy",
"attributes": {
"policyUrl": "https://www.cdc.gov/maso/Policy/policy596.pdf",
"description": "The CDC requires that manuscripts resulting from extramural work must be electronically submitted to the National Institutes of Health (NIH) Manuscript Submission System (NIHMS)",
"title": "Centers for Disease Control and Prevention Public Access Policy"
},
"relationships": {
"repositories": {
"data": [
{
"id": "3",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/policy",
"value": {
"id": "11",
"type": "policy",
"attributes": {
"policyUrl": "https://ies.ed.gov/funding/researchaccess.asp",
"description": "USAID public access policy requires that all peer-reviewed publications produced or funded by USAID must be submitted to the DEC, Development Experience Clearinghouse. Programmatic integration between PASS and the DEC is not available at this time, but a link to the DEC submission portal, along with publication metadata we have collected so far can be found at the end of the submission steps to help you start an article/manuscript submission in the DEC.",
"title": "United States Agency for International Development Public Access Plan"
},
"relationships": {
"repositories": {
"data": [
{
"id": "2",
"type": "repository"
}
]
}
}
}
},
{
"op": "add",
"path": "/funder",
"value": {
"id": "0",
"type": "funder",
"attributes": {
"localKey": "johnshopkins.edu:funder:300865",
"name": "NATIONAL INSTITUTE OF HEALTH"
},
"relationships": {
"policy": {
"data": {
"id": "5",
"type": "policy"
}
}
}
}
},
{
"op": "add",
"path": "/funder",
"value": {
"id": "1",
"type": "funder",
"attributes": {
"localKey": "johnshopkins.edu:funder:300852",
"name": "NATIONAL EYE INSTITUTE"
},
"relationships": {
"policy": {
"data": {
"id": "5",
"type": "policy"
}
}
}
}
},
{
"op": "add",
"path": "/funder",
"value": {
"id": "2",
"type": "funder",
"attributes": {
"localKey": "johnshopkins.edu:funder:311649",
"name": "INTERNATIONAL BRAIN RESEARCH"
},
"relationships": {}
}
},
{
"op": "add",
"path": "/funder",
"value": {
"id": "3",
"type": "funder",
"attributes": {
"localKey": "johnshopkins.edu:funder:301694",
"name": "WILLIAM AND ELLA OWENS MEDICAL RESE"
},
"relationships": {}
}
},
{
"op": "add",
"path": "/funder",
"value": {
"id": "4",
"type": "funder",
"attributes": {
"localKey": "johnshopkins.edu:funder:300883",
"name": "NATL SCIENCE FOUNDATION"
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "0",
"type": "user",
"attributes": {
"displayName": "Nihu Ser",
"email": "[email protected]",
"firstName": "Nihu",
"lastName": "Ser",
"locatorIds": [
"johnshopkins.edu:unique-id:NIHUSER",
"johnshopkins.edu:eppn:nih-user",
"johnshopkins.edu:employeeid:118110"
],
"roles": [
"submitter"
],
"username": "[email protected]"
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "1",
"type": "user",
"attributes": {
"firstName": "Staff",
"lastName": "Hasnogrants",
"displayName": "Staff Hasnogrants",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:staff2",
"johnshopkins.edu:employeeid:1020304",
"johnshopkins.edu:unique-id:FAKE0002"
],
"email": "[email protected]",
"username": "[email protected]"
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "2",
"type": "user",
"attributes": {
"firstName": "Staff",
"lastName": "Hasgrants",
"displayName": "Staff Hasgrants",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:swhg",
"johnshopkins.edu:employeeid:906502",
"johnshopkins.edu:unique-id:FAKESWG"
],
"middleName": "Who",
"email": "[email protected]",
"username": "[email protected]"
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "3",
"type": "user",
"attributes": {
"firstName": "F",
"lastName": "Hasgrants",
"displayName": "Faculty Hasgrants",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:fhg1",
"johnshopkins.edu:unique-id:MF150",
"johnshopkins.edu:employeeid:150"
],
"middleName": "A",
"email": "[email protected]"
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "4",
"type": "user",
"attributes": {
"firstName": "Andrew",
"lastName": "Forward",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Andrew Forward",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:aforward",
"johnshopkins.edu:unique-id:FAKE0009",
"johnshopkins.edu:employeeid:99000009"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "5",
"type": "user",
"attributes": {
"firstName": "Allen",
"lastName": "Moore",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Allen Moore",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:amoore",
"johnshopkins.edu:unique-id:FAKE0010",
"johnshopkins.edu:employeeid:99000010"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "6",
"type": "user",
"attributes": {
"firstName": "Bill",
"lastName": "Branan",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Bill Branan",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:bbranan",
"johnshopkins.edu:unique-id:FAKE0011",
"johnshopkins.edu:employeeid:99000011"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "7",
"type": "user",
"attributes": {
"firstName": "Grant",
"lastName": "McSheffrey",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Grant McSheffrey",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:grant-mcs",
"johnshopkins.edu:unique-id:FAKE0012",
"johnshopkins.edu:employeeid:99000012"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "8",
"type": "user",
"attributes": {
"firstName": "John",
"lastName": "Abrahams",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "John Abrahams",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:jabrah",
"johnshopkins.edu:unique-id:FAKE0013",
"johnshopkins.edu:employeeid:99000013"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "9",
"type": "user",
"attributes": {
"firstName": "Jared",
"lastName": "Galanis",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Jared Galanis",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:jaredgalanis",
"johnshopkins.edu:unique-id:FAKE0014",
"johnshopkins.edu:employeeid:99000014"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "10",
"type": "user",
"attributes": {
"firstName": "Jeff",
"lastName": "Gara",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Jeff Gara",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:jgara",
"johnshopkins.edu:unique-id:FAKE0015",
"johnshopkins.edu:employeeid:99000015"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "11",
"type": "user",
"attributes": {
"firstName": "Jim",
"lastName": "Martino",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Jim Martino",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:jrmartino",
"johnshopkins.edu:unique-id:FAKE0016",
"johnshopkins.edu:employeeid:99000016"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "12",
"type": "user",
"attributes": {
"firstName": "John",
"lastName": "Kellerman",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "John Kellerman",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:kineticsquid",
"johnshopkins.edu:unique-id:FAKE0017",
"johnshopkins.edu:employeeid:99000017"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "13",
"type": "user",
"attributes": {
"firstName": "Mark",
"lastName": "Patton",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Mark Patton",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:markpatton",
"johnshopkins.edu:unique-id:FAKE0018",
"johnshopkins.edu:employeeid:99000018"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "14",
"type": "user",
"attributes": {
"firstName": "Tim",
"lastName": "Martin",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Tim Martin",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:springstim",
"johnshopkins.edu:unique-id:FAKE0019",
"johnshopkins.edu:employeeid:99000019"
]
}
}
},
{
"op": "add",
"path": "/user",
"value": {
"id": "15",
"type": "user",
"attributes": {
"firstName": "Tim",
"lastName": "Sanders",
"username": "[email protected]",
"email": "[email protected]",
"displayName": "Tim Sanders",
"roles": [
"submitter"
],
"locatorIds": [
"johnshopkins.edu:eppn:tsande16",
"johnshopkins.edu:unique-id:FAKE0020",
"johnshopkins.edu:employeeid:99000020"
]
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "0",
"type": "journal",
"attributes": {
"issns": [
"Print:0095-8301"
],
"journalName": "Diabetes forecast",
"nlmta": "Diabetes Forecast"
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "1",
"type": "journal",
"attributes": {
"issns": [
"Online:1945-0508",
"Print:1945-0494"
],
"journalName": "Frontiers in bioscience (Elite edition)",
"nlmta": "Front Biosci (Elite Ed)"
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "2",
"type": "journal",
"attributes": {
"issns": [
"Online:2090-6412",
"Print:2090-6404"
],
"journalName": "Case Reports in Cardiology",
"pmcParticipation": "A",
"nlmta": "Case Rep Cardiol"
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "3",
"type": "journal",
"attributes": {
"issns": [
"Print:0046-2233"
],
"journalName": "Environmental biology and medicine",
"nlmta": "Environ Biol Med"
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "4",
"type": "journal",
"attributes": {
"issns": [
"Print:0367-3480"
],
"journalName": "Frankfurter Zeitschrift fur Pathologie",
"nlmta": "Frankf Z Pathol"
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "5",
"type": "journal",
"attributes": {
"issns": [
"Print:0001-723X",
"Online:1336-2305"
],
"journalName": "Acta virologica",
"nlmta": "Acta Virol"
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "6",
"type": "journal",
"attributes": {
"issns": [
"Print:1784-9934"
],
"journalName": "Journal of cyber therapy and rehabilitation",
"nlmta": "J Cyber Ther Rehabil"
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "7",
"type": "journal",
"attributes": {
"issns": [
"Print:0559-1996"
],
"journalName": "Report of proceedings. Scottish Society of the History of Medicine",
"nlmta": "Rep Proc Scott Soc Hist Med"
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "8",
"type": "journal",
"attributes": {
"issns": [
"Print:0952-3367"
],
"journalName": "The International journal of the history of sport",
"nlmta": "Int J Hist Sport"
}
}
},
{
"op": "add",
"path": "/journal",
"value": {
"id": "9",
"type": "journal",
"attributes": {
"issns": [
"Print:0967-0874",
"Online:1366-5863"
],
"journalName": "International journal of pest management",
"nlmta": "Int J Pest Manag"
}
}
},
{
"op": "add",
"path": "/publication",
"value": {
"id": "0",
"type": "publication",
"attributes": {
"volume": "23",
"issue": "7",
"pmid": "25820114",
"title": "Is There Excess Oxidative Stress and Damage in Eyes of Patients with Retinitis Pigmentosa?",
"doi": "10.1089/ars.2015.6327"
}
}
},
{
"op": "add",
"path": "/publication",
"value": {
"id": "1",
"type": "publication",
"attributes": {
"volume": "86",
"issue": "2",
"title": "Balancing Excitation and Inhibition",
"doi": "10.1016/j.neuron.2015.04.009"
},
"relationships": {
"journal": {
"data": {
"id": "1",
"type": "journal"
}
}
}
}
},
{
"op": "add",
"path": "/publication",
"value": {
"id": "2",
"type": "publication",
"attributes": {
"volume": "0",
"issue": "",
"title": "This is a test publication",
"doi": ""
},
"relationships": {
"journal": {
"data": {