-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsampleReport.json
22491 lines (22491 loc) · 768 KB
/
sampleReport.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
{
"categories": {
"A": [
"Visual literacy",
"Visual grammar",
"Visual rhetoric",
"Graphicacy",
"Visual literacy / visual grammar",
"Visual semiotics",
"Graphical Literacy",
"Visual literacy / visual semiotics",
"Visual literacy / visual rhetoric",
"Visual literacy / literary visualcy",
"Visual literacy / visual grammar / visual semiotics",
"Visual semiotics / visual grammar"
],
"B": [
"Finance",
"Linguistics",
"Education",
"Psychology",
"Visual studies",
"Philosophy",
"Visual arts",
"Performative arts",
"History",
"Popular media",
"Geography",
"Medical sciences",
"Journalism",
"Politics",
"Anthropology",
"Advertising"
],
"C": [
"Report",
"Linguistics",
"Museum education",
"Visual Perception",
"Art education",
"Film studies",
"Visual studies",
"Librarian education",
"Pedagogy",
"Design education",
"Resources",
"Semiotics",
"Educational technologies",
"Poetry",
"Pictorial journalism",
"Cartography",
"Media studies",
"Educational psychology",
"Creative education",
"Rhetoric",
"Semantics",
"Language and Literacy Education",
"Advertisement",
"Kinesics",
"English education",
"Special education",
"Academic Ethics"
],
"D": [
"1st. wave of visual literacy",
"Antecedents of 2nd. wave of visual literacy",
"2nd. wave of visual literacy",
"Criticism against the 2nd. wave of visual literacy",
"Elements of the 1st. and 2nd. waves of visual literacy",
"3rd. wave of visual literacy",
"Elements of the 2nd. and 3rd. waves of visual literacy"
]
},
"nodes": [
{
"id": "3192",
"name": "The\n Commercial and Political Atlas: Representing, by Means of Stained \nCopper-Plate Charts, the Progress of the Commerce, Revenues, Expenditure\n and Debts of England during the Whole of the Eighteenth Century.",
"author": [
"William Playfair"
],
"place": "London",
"date": "1786",
"unixtime": -5798624400,
"extra": "00215",
"abstract": "A\n scientific revolution began at the end of the 18th century with the \ninvention and popularization of the graphic display of data by the \nremarkable Scot William Playfair. His marvelous Atlas showed how much \ncould be learned if one plotted data at atheoret",
"added": "2/5/2016, 4:50:02 PM",
"modified": "2/5/2016, 5:02:03 PM",
"tags": [
"A. -",
"B. Finance",
"C. Report",
"D. -"
],
"categories": {
"A": "-",
"B": "Finance",
"C": "Report",
"D": "-"
}
},
{
"id": "2932",
"name": "Multum\n in Parvo: Or a Brief Display of More Than a Thousand Errors in Each of \nthe Undermentioned Writers: Johnson, Sheridan, Walker, Nares, Perry, \nEntick ... with Original Observations on the Lancashire, Welch, and \nScotch Modes of Speaking ... Also ... a Radical Table of Words ...",
"author": [
"William P. Russel"
],
"publisher": "Mrs. Barratt",
"date": "1801",
"unixtime": -5325325200,
"pages": "116",
"added": "2/3/2016, 2:43:45 PM",
"modified": "2/3/2016, 2:43:45 PM",
"tags": [
"A. Visual literacy",
"B. Linguistics",
"C. Linguistics",
"D. -"
],
"categories": {
"A": "Visual literacy",
"B": "Linguistics",
"C": "Linguistics",
"D": "-"
}
},
{
"id": "3031",
"name": "Museum ideals of purpose and method",
"author": [
"Benjamin Ives Gilman"
],
"publisher": "Cambridge",
"date": "1918",
"unixtime": -1633194000,
"extra": "00000",
"added": "2/3/2016, 2:44:43 PM",
"modified": "2/3/2016, 10:41:51 PM",
"tags": [
"A. -",
"B. Education",
"C. Museum education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Museum education",
"D": "-"
}
},
{
"id": "2952",
"name": "An Aspect of Gestalt Psychology",
"author": [
"Wolfgang Köhler"
],
"volume": "32",
"publication": "Pedagogical Seminary and Journal of Genetic Psychology",
"issn": "0885-6559",
"date": "1925",
"unixtime": -1412269200,
"abstract": "00047",
"added": "2/3/2016, 2:43:54 PM",
"modified": "2/3/2016, 10:44:29 PM",
"tags": [
"A. -",
"B. Psychology",
"C. Visual Perception",
"D. -"
],
"categories": {
"A": "-",
"B": "Psychology",
"C": "Visual Perception",
"D": "-"
}
},
{
"id": "2635",
"name": "The reproduction of visually perceived forms",
"author": [
"J. J. Gibson"
],
"volume": "12",
"issue": "1",
"pages": "1-39",
"publication": "Journal of Experimental Psychology",
"issn": "0022-1015",
"date": "1929-02",
"unixtime": -1291132800,
"extra": "00179",
"abbr": "Journal of Experimental Psychology",
"doi": "<a href=\"http://doi.org/10.1037/h0072470\">10.1037/h0072470</a>",
"abstract": "In\n this investigation the author undertook to study the variations in the \nreproduction of geometrical patterns shown tachistoscopically to his \nobservers, and to relate the difference to the observers' reports upon \nthe nature of the perception. The types of changes are compared with \nthose reported by Wulf in a previous investigation of the changes in \nmemory images which occur with a lapse of time. (Psychol. Forsch., 1922,\n 1, 333 ff.) Two series of simple geometrical figures were used as the \nmaterial, the one series consisting of 14 figures made up of straight \nlines, and the other, 14 figures made up of curved lines, including 4 \nfigures that involved both straight-line and curved-line components. The\n figures were exposed to the subjects by a modified Ranschburg memory \napparatus for approximately 1½ seconds. No definite time limit was set \nfor reproduction. Six observers participated in the experiment, making \napproximately 4,000 reproductions of the 28 figures. An analysis of the \ntypes of changes introduced by the observer in the reproductions of the \nfigures showed trends in the direction of making them similar to objects\n frequently associated with the figures in previous perceptions. Also \nchanges were often found to be conditioned by cues furnished from a \nverbal analysis made during the perception of the form. Closure, or \nperceptual filling, and analysis, or falling apart into separate units, \nwere characteristics likewise. Curved lines are much more apt to be \nreproduced as straight lines than the reverse. In general, the nature of\n a change found in the reproduction depends upon the manner in which the\n figure was apprehended. (PsycINFO Database Record (c) 2012 APA, all \nrights reserved)",
"added": "2/3/2016, 2:38:06 PM",
"modified": "2/3/2016, 10:46:25 PM",
"tags": [
"A. -",
"B. Psychology",
"C. Visual Perception",
"D. -"
],
"categories": {
"A": "-",
"B": "Psychology",
"C": "Visual Perception",
"D": "-"
}
},
{
"id": "2688",
"name": "Art as experience",
"author": [
"John Dewey"
],
"place": "New York, Minton",
"publisher": "Balch & company",
"date": "1934",
"unixtime": -1128272400,
"number": "N66 .D4",
"pages": "1",
"added": "2/3/2016, 2:38:41 PM",
"modified": "2/3/2016, 10:50:27 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Art education",
"D": "-"
}
},
{
"id": "2657",
"name": "Principles of gestalt psychology",
"author": [
"Kurt Koffka"
],
"series": "International library of psychology, philosophy and scientific method",
"edition": "\"First edition.\"",
"place": "New York",
"publisher": "Harcourt, Brace and company",
"date": "1935",
"unixtime": -1096736400,
"number": "BF203 .K64",
"extra": "00018",
"pages": "720",
"added": "2/3/2016, 2:38:21 PM",
"modified": "2/3/2016, 10:52:24 PM",
"tags": [
"A. -",
"B. Psychology",
"C. Visual Perception",
"D. -"
],
"categories": {
"A": "-",
"B": "Psychology",
"C": "Visual Perception",
"D": "-"
}
},
{
"id": "2900",
"name": "Art a Way of Life",
"author": [
"Melvin E. Haggerty"
],
"publisher": "Minneapolis",
"date": "1935",
"unixtime": -1096736400,
"added": "2/3/2016, 2:43:15 PM",
"modified": "2/3/2016, 10:51:06 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Art education",
"D": "-"
}
},
{
"id": "3115",
"name": "A grammar of the film: An analysis of film technique.",
"author": [
"Raymond Spottiswoode"
],
"place": "London",
"publisher": "Faber",
"date": "1935",
"unixtime": -1096736400,
"added": "2/3/2016, 2:45:33 PM",
"modified": "2/3/2016, 10:52:40 PM",
"tags": [
"A. Visual grammar",
"B. Visual studies",
"C. Film studies",
"D. -"
],
"categories": {
"A": "Visual grammar",
"B": "Visual studies",
"C": "Film studies",
"D": "-"
}
},
{
"id": "3044",
"name": "International Picture Language",
"author": [
"Otto Neurath"
],
"place": "London",
"publisher": "Paul Kegan",
"date": "1936",
"unixtime": -1065114000,
"added": "2/3/2016, 2:44:50 PM",
"modified": "2/3/2016, 10:54:08 PM",
"tags": [
"A. -",
"B. Philosophy",
"C. Visual studies",
"D. -"
],
"categories": {
"A": "-",
"B": "Philosophy",
"C": "Visual studies",
"D": "-"
}
},
{
"id": "1362",
"name": "Use Pictorial Charts, Librarians Advised",
"author": [],
"volume": "31",
"issue": "4",
"pages": "224-225",
"publication": "Bulletin of the American Library Association",
"date": "1937-04",
"unixtime": -1033578000,
"abbr": "Bulletin of the American Library Association",
"added": "4/24/2014, 8:30:20 PM",
"modified": "2/6/2016, 1:12:47 PM",
"tags": [
"A. Visual grammar",
"B. Education",
"C. Librarian education",
"D. -"
],
"categories": {
"A": "Visual grammar",
"B": "Education",
"C": "Librarian education",
"D": "-"
}
},
{
"id": "2786",
"name": "Experience and education",
"author": [
"John Dewey"
],
"series": "The Kappa delta pi lecture series, no. 10",
"place": "New York",
"publisher": "Macmillan",
"date": "1938",
"unixtime": -1002042000,
"number": "LB875 .D3943",
"pages": "116",
"added": "2/3/2016, 2:39:46 PM",
"modified": "2/3/2016, 10:56:55 PM",
"tags": [
"A. -",
"B. Education",
"C. Pedagogy",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Pedagogy",
"D": "-"
}
},
{
"id": "2795",
"name": "The new vision: fundamentals of design, painting, sculpture, architecture",
"author": [
"László Moholy-Nagy"
],
"place": "New York, NY",
"publisher": "W.W. Norton & Company, inc.",
"date": "1938",
"unixtime": -1002042000,
"extra": "00009",
"abstract": "Fundamentals of design, painting, sculpture, architecture.",
"pages": "212",
"added": "2/3/2016, 2:39:48 PM",
"modified": "2/3/2016, 11:01:01 PM",
"tags": [
"A. -",
"B. Education",
"C. Design education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Design education",
"D": "-"
}
},
{
"id": "2951",
"name": "Enrichment of the common life",
"author": [
"Melvin E. Haggerty"
],
"place": "Minneapolis",
"publisher": "University of Minnesota Press",
"date": "1938",
"unixtime": -1002042000,
"added": "2/3/2016, 2:43:53 PM",
"modified": "2/3/2016, 10:58:15 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Art education",
"D": "-"
}
},
{
"id": "2970",
"name": "International Encyclopedia of Unified Science",
"author": [],
"editor": "Otto Neurath",
"publisher": "Chicago :",
"date": "1938",
"unixtime": -1002042000,
"volumes": "II",
"added": "2/3/2016, 2:44:05 PM",
"modified": "2/3/2016, 11:05:59 PM",
"tags": [
"A. -",
"B. Philosophy",
"C. Resources",
"D. -"
],
"categories": {
"A": "-",
"B": "Philosophy",
"C": "Resources",
"D": "-"
}
},
{
"id": "2977",
"name": "Foundations of the theory of signs",
"author": [
"Charles William Morris"
],
"series": "International encyclopedia of unified science",
"place": "Chicago, Ill",
"publisher": "The University of Chicago Press",
"date": "1938",
"unixtime": -1002042000,
"number": "v. 1., no. 2",
"pages": "59",
"added": "2/3/2016, 2:44:08 PM",
"modified": "2/3/2016, 11:05:12 PM",
"tags": [
"A. -",
"B. Philosophy",
"C. Semiotics",
"D. -"
],
"categories": {
"A": "-",
"B": "Philosophy",
"C": "Semiotics",
"D": "-"
}
},
{
"id": "2609",
"name": "The art museum and the secondary school",
"author": [
"Robert Tyler Davis"
],
"place": "New York, NY",
"publisher": "Albright Art Gallery",
"date": "1939",
"unixtime": -970506000,
"pages": "96",
"added": "2/3/2016, 2:37:53 PM",
"modified": "2/3/2016, 11:06:50 PM",
"tags": [
"A. -",
"B. Education",
"C. Museum education",
"D. 1st. wave of visual literacy"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Museum education",
"D": "1st. wave of visual literacy"
}
},
{
"id": "2978",
"name": "Theory Of Valuation",
"author": [
"John Dewey"
],
"series": "International encyclopedia of unified science",
"publisher": "The University Of Chicago Press",
"date": "1939",
"unixtime": -970506000,
"number": "v. 2., no. 4",
"pages": "84",
"added": "2/3/2016, 2:44:09 PM",
"modified": "2/3/2016, 11:07:21 PM",
"tags": [
"A. -",
"B. Philosophy",
"C. -",
"D. -"
],
"categories": {
"A": "-",
"B": "Philosophy",
"C": "-",
"D": "-"
}
},
{
"id": "3214",
"name": "Modern man in the making",
"author": [
"Otto Neurath"
],
"place": "New York & London",
"publisher": "A.A. Knopf",
"date": "1939",
"unixtime": -970506000,
"extra": "00063",
"added": "2/6/2016, 12:58:51 PM",
"modified": "2/6/2016, 1:00:11 PM",
"tags": [
"A. Visual grammar",
"B. Visual arts",
"C. Visual studies",
"D. -"
],
"categories": {
"A": "Visual grammar",
"B": "Visual arts",
"C": "Visual studies",
"D": "-"
}
},
{
"id": "2740",
"name": "Art in American life and education",
"author": [
"National Society for the Study of Education"
],
"editor": "Guy Montrose Whipple",
"series": "The Fortieth yearbook of the National Society for the Study of Education",
"place": "Bloomington, Ill",
"publisher": "Public School Pub. Co",
"date": "1941",
"unixtime": -907347600,
"number": "LB5 .N25 1941",
"extra": "00000",
"pages": "819",
"added": "2/3/2016, 2:39:23 PM",
"modified": "2/3/2016, 11:08:34 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Art education",
"D": "-"
}
},
{
"id": "2799",
"name": "Television: A New Means of Art Education",
"author": [
"Harry D. M. Grier"
],
"volume": "1",
"issue": "1",
"pages": "9-11",
"publication": "College Art Journal",
"issn": "1543-6322",
"date": "1941-11",
"unixtime": -888858000,
"abbr": "College Art Journal",
"doi": "<a href=\"http://doi.org/10.2307/773606\">10.2307/773606</a>",
"added": "2/3/2016, 2:39:49 PM",
"modified": "2/3/2016, 11:08:50 PM",
"tags": [
"A. -",
"B. Visual arts",
"C. Educational technologies",
"D. -"
],
"categories": {
"A": "-",
"B": "Visual arts",
"C": "Educational technologies",
"D": "-"
}
},
{
"id": "2775",
"name": "The Owatonna Art Education Project",
"author": [
"Clifton Gayne"
],
"volume": "44",
"issue": "8",
"publication": "Design",
"issn": "0011-9253",
"date": "1943-04",
"unixtime": -844275600,
"added": "2/3/2016, 2:39:42 PM",
"modified": "2/3/2016, 2:39:42 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Art education",
"D": "-"
}
},
{
"id": "2972",
"name": "Gestalt and Art",
"author": [
"Rudolf Arnheim"
],
"volume": "2",
"issue": "8",
"pages": "71-75",
"publication": "The Journal of Aesthetics and Art Criticism",
"issn": "0021-8529",
"date": "1943-10",
"unixtime": -828464400,
"abbr": "The Journal of Aesthetics and Art Criticism",
"doi": "<a href=\"http://doi.org/10.2307/425947\">10.2307/425947</a>",
"added": "2/3/2016, 2:44:05 PM",
"modified": "2/3/2016, 11:15:28 PM",
"tags": [
"A. -",
"B. Psychology",
"C. Film studies",
"D. -"
],
"categories": {
"A": "-",
"B": "Psychology",
"C": "Film studies",
"D": "-"
}
},
{
"id": "2774",
"name": "Art for daily living: the story of the Owatonna Art Education Project",
"author": [
"Edwin Ziegfeld"
],
"series": "The Owatonna art education project",
"place": "Minneapolis",
"publisher": "University of Minnesota Press",
"date": "1944",
"unixtime": -812653200,
"number": "no. 4",
"pages": "155",
"added": "2/3/2016, 2:39:42 PM",
"modified": "2/3/2016, 11:11:56 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Art education",
"D": "-"
}
},
{
"id": "2889",
"name": "Language of vision",
"author": [
"Gyorgy Kepes"
],
"place": "Chicago",
"publisher": "P. Theobald",
"date": "1944",
"unixtime": -812653200,
"number": "N70 .K45",
"pages": "228",
"added": "2/3/2016, 2:42:57 PM",
"modified": "2/3/2016, 11:13:49 PM",
"tags": [
"A. Visual grammar",
"B. Psychology",
"C. Visual studies",
"D. -"
],
"categories": {
"A": "Visual grammar",
"B": "Psychology",
"C": "Visual studies",
"D": "-"
}
},
{
"id": "2984",
"name": "Ethics and language",
"author": [
"Charles L. Stevenson"
],
"place": "New Haven : London",
"publisher": "Yale University Press; H. Milford, Oxford University Press",
"date": "1944",
"unixtime": -812653200,
"number": "BJ43 .S8",
"pages": "338",
"added": "2/3/2016, 2:44:17 PM",
"modified": "2/3/2016, 11:14:25 PM",
"tags": [
"A. -",
"B. Psychology",
"C. Linguistics",
"D. -"
],
"categories": {
"A": "-",
"B": "Psychology",
"C": "Linguistics",
"D": "-"
}
},
{
"id": "2935",
"name": "Gestalt Theory",
"author": [
"Max Wertheimer",
"Kurt Riezler"
],
"volume": "11",
"issue": "1",
"pages": "78-99",
"publication": "Social Research",
"issn": "0037-783X",
"date": "1944-02",
"unixtime": -817833600,
"extra": "00148",
"abbr": "Social Research",
"abstract": "00726",
"added": "2/3/2016, 2:43:47 PM",
"modified": "2/3/2016, 11:16:10 PM",
"tags": [
"A. -",
"B. Psychology",
"C. Visual Perception",
"D. -"
],
"categories": {
"A": "-",
"B": "Psychology",
"C": "Visual Perception",
"D": "-"
}
},
{
"id": "3016",
"name": "Education through art",
"author": [
"Herbert Read"
],
"edition": "2d ed.",
"place": "New York",
"publisher": "Pantheon Books",
"date": "1945",
"unixtime": -781117200,
"number": "N85 .R42 1945",
"pages": "328",
"added": "2/3/2016, 2:44:37 PM",
"modified": "2/3/2016, 11:17:14 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Art education",
"D": "-"
}
},
{
"id": "2741",
"name": "A History of Art Education in the Public Schools of the United States",
"author": [
"Francis Bland Belshe"
],
"place": "United States -- Connecticut",
"date": "1946",
"unixtime": -749581200,
"extra": "00000",
"type": "Ph.D.",
"university": "Yale University",
"pages": "220",
"added": "2/3/2016, 2:39:23 PM",
"modified": "2/3/2016, 11:18:01 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Art education",
"D": "-"
}
},
{
"id": "2982",
"name": "Peirce's Theory of Linguistic Signs, Thought, and Meaning",
"author": [
"John Dewey"
],
"volume": "43",
"issue": "4",
"pages": "85-95",
"publication": "The Journal of Philosophy",
"issn": "0022-362X",
"date": "1946",
"unixtime": -749581200,
"extra": "00000",
"abbr": "The Journal of Philosophy",
"doi": "<a href=\"http://doi.org/10.2307/2019493\">10.2307/2019493</a>",
"added": "2/3/2016, 2:44:16 PM",
"modified": "2/3/2016, 11:18:42 PM",
"tags": [
"A. -",
"B. Philosophy",
"C. Semiotics",
"D. -"
],
"categories": {
"A": "-",
"B": "Philosophy",
"C": "Semiotics",
"D": "-"
}
},
{
"id": "2797",
"name": "School Instruction in Art",
"author": [
"Thomas Munro"
],
"volume": "16",
"issue": "2",
"pages": "161-181",
"publication": "Review of Educational Research",
"issn": "0034-6543",
"date": "1946-04",
"unixtime": -749581200,
"extra": "00004",
"abbr": "Review of Educational Research",
"doi": "<a href=\"http://doi.org/10.2307/1168500\">10.2307/1168500</a>",
"added": "2/3/2016, 2:39:48 PM",
"modified": "2/3/2016, 11:19:07 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Art education",
"D": "-"
}
},
{
"id": "2783",
"name": "Vision in motion",
"author": [
"László Moholy-Nagy"
],
"series": "ID book, Institute of design [Chicago]",
"place": "Chicago",
"publisher": "P. Theobald",
"date": "1947",
"unixtime": -718045200,
"number": "N7430 .M65",
"pages": "371",
"added": "2/3/2016, 2:39:45 PM",
"modified": "2/3/2016, 11:22:42 PM",
"tags": [
"A. -",
"B. Education",
"C. Design education",
"D. -"
],
"categories": {
"A": "-",
"B": "Education",
"C": "Design education",
"D": "-"
}
},
{
"id": "2990",
"name": "Motion Picture Testing and Research",
"author": [
"James J. Gibson"
],
"date": "1947",
"unixtime": -718045200,
"extra": "00000",
"institution": "ARMY AIR FORCES WASHINGTON DC AVIATION PSYCHOLOGY PROGRAM, ARMY AIR FORCES WASHINGTON DC AVIATION PSYCHOLOGY PROGRAM",
"added": "2/3/2016, 2:44:22 PM",
"modified": "2/3/2016, 11:20:25 PM",
"tags": [
"A. -",
"B. Psychology",
"C. Visual Perception",
"D. -"
],
"categories": {
"A": "-",
"B": "Psychology",
"C": "Visual Perception",
"D": "-"
}
},
{
"id": "3014",
"name": "Creative and Mental Growth: A Textbook on Art Education",
"author": [
"Viktor Lowenfeld"
],
"publisher": "Macmillan Co.",
"date": "1947",
"unixtime": -718045200,
"pages": "328",
"added": "2/3/2016, 2:44:37 PM",
"modified": "2/3/2016, 11:21:37 PM",
"tags": [
"A. -",
"B. Education",
"C. Art education",
"D. -"
],
"categories": {
"A": "-",