This repository was archived by the owner on Aug 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.json
More file actions
11420 lines (11420 loc) · 369 KB
/
output.json
File metadata and controls
11420 lines (11420 loc) · 369 KB
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
[
{
"specific_learning_outcome": "Ask questions that demonstrate a curiousity about living things, objects, and events in the immediate environment.",
"general_learning_outcomes": [
"A1",
"C2",
"C5"
],
"grade": "K",
"cluster": "0",
"id": "1A"
},
{
"specific_learning_outcome": "Make predictions as to what might happen during explorations.",
"general_learning_outcomes": [
"A1",
"C2"
],
"grade": "K",
"cluster": "0",
"id": "1B"
},
{
"specific_learning_outcome": "Recognize a practical problem in a given context.",
"general_learning_outcomes": [
"C3"
],
"grade": "K",
"cluster": "0",
"id": "1C"
},
{
"specific_learning_outcome": "Seek information from others. Examples: people at school, at home, in the community",
"general_learning_outcomes": [
"C6"
],
"grade": "K",
"cluster": "0",
"id": "2A"
},
{
"specific_learning_outcome": "Compare gathered ideas and information to personal knowledge.",
"general_learning_outcomes": [
"C6",
"C8"
],
"grade": "K",
"cluster": "0",
"id": "2B"
},
{
"specific_learning_outcome": "Brainstorm, with the class, possible solutions to a practical problem, and reach consensus on a solution to implement.",
"general_learning_outcomes": [
"C3",
"C7"
],
"grade": "K",
"cluster": "0",
"id": "3A"
},
{
"specific_learning_outcome": "Develop, as a class, limited criteria to evaluate an object based on its function.",
"general_learning_outcomes": [
"C3",
"C7"
],
"grade": "K",
"cluster": "0",
"id": "3B"
},
{
"specific_learning_outcome": "Select materials to be used.",
"general_learning_outcomes": [
"C2",
"C3"
],
"grade": "K",
"cluster": "0",
"id": "3C"
},
{
"specific_learning_outcome": "Manipulate materials purposefully.",
"general_learning_outcomes": [
"C1",
"C2"
],
"grade": "K",
"cluster": "0",
"id": "4A"
},
{
"specific_learning_outcome": "Construct an object to solve a problem or meet a need.",
"general_learning_outcomes": [
"C3"
],
"grade": "K",
"cluster": "0",
"id": "4B"
},
{
"specific_learning_outcome": "Identify, with guidance, improvements to an object with respect to pre-determined criteria.",
"general_learning_outcomes": [
"C3"
],
"grade": "K",
"cluster": "0",
"id": "4C"
},
{
"specific_learning_outcome": "Respond to the ideas and actions of others.",
"general_learning_outcomes": [
"C5",
"C7"
],
"grade": "K",
"cluster": "0",
"id": "4D"
},
{
"specific_learning_outcome": "Participate in cooperative group learning experiences.",
"general_learning_outcomes": [
"C7"
],
"grade": "K",
"cluster": "0",
"id": "4E"
},
{
"specific_learning_outcome": "Verbalize questions during classroom learning experiences.",
"general_learning_outcomes": [
"C6"
],
"grade": "K",
"cluster": "0",
"id": "4F"
},
{
"specific_learning_outcome": "Follow given safety procedures and rules.",
"general_learning_outcomes": [
"C1"
],
"grade": "K",
"cluster": "0",
"id": "4G"
},
{
"specific_learning_outcome": "Observe using one or a combination of senses.",
"general_learning_outcomes": [
"C2"
],
"grade": "K",
"cluster": "0",
"id": "5A"
},
{
"specific_learning_outcome": "Describe the duration of events. Examples: long time, short time",
"general_learning_outcomes": [
"C2",
"C3"
],
"grade": "K",
"cluster": "0",
"id": "5B"
},
{
"specific_learning_outcome": "Record observations using drawings.",
"general_learning_outcomes": [
"C6"
],
"grade": "K",
"cluster": "0",
"id": "5C"
},
{
"specific_learning_outcome": "Construct, with guidance, concrete-object graphs using 1:1 correspondence.",
"general_learning_outcomes": [
"C2",
"C6"
],
"grade": "K",
"cluster": "0",
"id": "6A"
},
{
"specific_learning_outcome": "Compare data using appropriate terms. Examples: more, less, same",
"general_learning_outcomes": [
"A1",
"A2",
"C2",
"C5"
],
"grade": "K",
"cluster": "0",
"id": "6B"
},
{
"specific_learning_outcome": "Place materials and objects in a sequence or in groups using a single, self-determined attribute.",
"general_learning_outcomes": [
"C2",
"C3",
"C5"
],
"grade": "K",
"cluster": "0",
"id": "6C"
},
{
"specific_learning_outcome": "Recognize connections between new experiences and prior knowledge.",
"general_learning_outcomes": [
"A2"
],
"grade": "K",
"cluster": "0",
"id": "7A"
},
{
"specific_learning_outcome": "Describe, in a variety of ways, what was done and what was observed. Examples: concrete materials, drawings, oral language.",
"general_learning_outcomes": [
"C6"
],
"grade": "K",
"cluster": "0",
"id": "7B"
},
{
"specific_learning_outcome": "Recognize that learning can come from careful observations and investigations.",
"general_learning_outcomes": [
"A1",
"A2",
"C2"
],
"grade": "K",
"cluster": "0",
"id": "8A"
},
{
"specific_learning_outcome": "Be open minded while exploring.",
"general_learning_outcomes": [
"C5"
],
"grade": "K",
"cluster": "0",
"id": "9A"
},
{
"specific_learning_outcome": "Willingly observe, question, and explore.",
"general_learning_outcomes": [
"C5"
],
"grade": "K",
"cluster": "0",
"id": "9B"
},
{
"specific_learning_outcome": "Express enjoyment of science-related classroom experiences.",
"general_learning_outcomes": [
"C5"
],
"grade": "K",
"cluster": "0",
"id": "9C"
},
{
"specific_learning_outcome": "Use appropriate vocabulary related to their investigations of trees. Include: tree, trunk, crown, branch, leaf, needle, bark, root, seed, winter, spring, fall, summer",
"general_learning_outcomes": [
"C5",
"D1",
"D5"
],
"grade": "K",
"cluster": "1",
"id": "01"
},
{
"specific_learning_outcome": "Identify ways in which humans and other animals use trees. Examples: humans eat apples and walnuts; birds make their home in trees; deer eat leaves, bark, and tender twigs",
"general_learning_outcomes": [
"B1"
],
"grade": "K",
"cluster": "1",
"id": "02"
},
{
"specific_learning_outcome": "Identify and describe basic parts of a tree. Include: trunk, crown, branch, leaf, bark, root, seed",
"general_learning_outcomes": [
"D1",
"E2"
],
"grade": "K",
"cluster": "1",
"id": "03"
},
{
"specific_learning_outcome": "Explore, sort, and classify leaves, using their own classification system. Examples: size, colour, pattern, length, shape",
"general_learning_outcomes": [
"C2",
"D1",
"E1"
],
"grade": "K",
"cluster": "1",
"id": "04"
},
{
"specific_learning_outcome": "Name and describe each of the four seasons.",
"general_learning_outcomes": [
"D6"
],
"grade": "K",
"cluster": "1",
"id": "05"
},
{
"specific_learning_outcome": "Recognize that some trees lose their leaves in the fall, while others do not.",
"general_learning_outcomes": [
"D1"
],
"grade": "K",
"cluster": "1",
"id": "06"
},
{
"specific_learning_outcome": "Describe seasonal changes in the life of a tree. Examples: leaves of some trees change colour and drop off in the fall",
"general_learning_outcomes": [
"D1"
],
"grade": "K",
"cluster": "1",
"id": "07"
},
{
"specific_learning_outcome": "Investigate to determine that many trees produce seeds which are dispersed and may grow into new trees.",
"general_learning_outcomes": [
"C2",
"D1"
],
"grade": "K",
"cluster": "1",
"id": "08"
},
{
"specific_learning_outcome": "Use appropriate vocabulary related to their investigations of colours. Include: red, yellow, blue, orange, brown, black, white, purple, green, gray, pink, mix, light, dark, match, primary colour",
"general_learning_outcomes": [
"C6",
"D3"
],
"grade": "K",
"cluster": "2",
"id": "01"
},
{
"specific_learning_outcome": "Sort and classify objects by colour.",
"general_learning_outcomes": [
"C2",
"D3"
],
"grade": "K",
"cluster": "2",
"id": "02"
},
{
"specific_learning_outcome": "Compare and contrast colours using appropriate terms. Examples: lighter than, darker than, brighter than",
"general_learning_outcomes": [
"C2",
"D3"
],
"grade": "K",
"cluster": "2",
"id": "03"
},
{
"specific_learning_outcome": "Order a group of objects based on a given colour criterion. Examples: order objects of the same colour range from lightest to darkest",
"general_learning_outcomes": [
"C2",
"D3"
],
"grade": "K",
"cluster": "2",
"id": "04"
},
{
"specific_learning_outcome": "Predict and describe changes in colour that result from the mixing of primary colours and from mixing a primary colour with white or black.",
"general_learning_outcomes": [
"C2",
"D3"
],
"grade": "K",
"cluster": "2",
"id": "05"
},
{
"specific_learning_outcome": "Create a colour to match a given sample by mixing the appropriate amounts of two primary colours.",
"general_learning_outcomes": [
"C3",
"D3"
],
"grade": "K",
"cluster": "2",
"id": "06"
},
{
"specific_learning_outcome": "Explore to identify and describe colours found in their environment. Examples: rocks, flowers, shells, blocks, crayons",
"general_learning_outcomes": [
"C2",
"D3"
],
"grade": "K",
"cluster": "2",
"id": "07"
},
{
"specific_learning_outcome": "Use appropriate vocabulary related to their investigations of paper. Include: characteristic, thick, thin, hard, soft, smooth, rough, absorbent, pliable",
"general_learning_outcomes": [
"C6",
"D3"
],
"grade": "K",
"cluster": "3",
"id": "01"
},
{
"specific_learning_outcome": "Identify kinds of paper that can be found in the classroom. Examples: drawing paper, paper towels, paper plates, books, newspaper, cardboard, tissue paper",
"general_learning_outcomes": [
"B1"
],
"grade": "K",
"cluster": "3",
"id": "02"
},
{
"specific_learning_outcome": "Recognize that paper is most often made from trees.",
"general_learning_outcomes": [
"D3"
],
"grade": "K",
"cluster": "3",
"id": "03"
},
{
"specific_learning_outcome": "Observe and compare characteristics of different kinds of paper. Examples: compare colour, thickness, stiffness, texture",
"general_learning_outcomes": [
"C2",
"D3"
],
"grade": "K",
"cluster": "3",
"id": "04"
},
{
"specific_learning_outcome": "Compare characteristics of different kinds of paper that make them easy or difficult to cut, tear, or fold. Examples:cardboard is thicker than newsprint and harder to fold",
"general_learning_outcomes": [
"D3",
"E1"
],
"grade": "K",
"cluster": "3",
"id": "05"
},
{
"specific_learning_outcome": "Explore to determine an appropriate kind of paper for a particular task. Examples: paper towels are useful for soaking up spills",
"general_learning_outcomes": [
"B1",
"C3"
],
"grade": "K",
"cluster": "3",
"id": "06"
},
{
"specific_learning_outcome": "Use the design process to construct a paper product for a particular use. Examples: paper cup, envelope, paper mat, box",
"general_learning_outcomes": [
"C3"
],
"grade": "K",
"cluster": "3",
"id": "07"
},
{
"specific_learning_outcome": "Ask questions that lead to explorations of living things, objects, and events in the immediate environment.",
"general_learning_outcomes": [
"A1",
"C2",
"C5"
],
"grade": "1",
"cluster": "0",
"id": "1A"
},
{
"specific_learning_outcome": "Make predictions based on classroom experiences.",
"general_learning_outcomes": [
"A1",
"C2"
],
"grade": "1",
"cluster": "0",
"id": "1B"
},
{
"specific_learning_outcome": "Recognize a practical problem in a given context.",
"general_learning_outcomes": [
"C3"
],
"grade": "1",
"cluster": "0",
"id": "1C"
},
{
"specific_learning_outcome": "Access information using a variety of sources. Examples: picture and concept books, people, excursions, camps, CD-ROMs",
"general_learning_outcomes": [
"C6"
],
"grade": "1",
"cluster": "0",
"id": "2A"
},
{
"specific_learning_outcome": "Recognize when information answers the questions asked.",
"general_learning_outcomes": [
"C6",
"C8"
],
"grade": "1",
"cluster": "0",
"id": "2B"
},
{
"specific_learning_outcome": "Brainstorm, with the class, possible solutions to a practical problem, and reach consensus on a solution to implement.",
"general_learning_outcomes": [
"C3",
"C7"
],
"grade": "1",
"cluster": "0",
"id": "3A"
},
{
"specific_learning_outcome": "Create, with the class, a plan to solve a problem or meet a need. Include: identify simple steps to follow",
"general_learning_outcomes": [
"C3",
"C7"
],
"grade": "1",
"cluster": "0",
"id": "3B"
},
{
"specific_learning_outcome": "Develop, with the class, limited criteria to evaluate an object or device based on its function.",
"general_learning_outcomes": [
"C3",
"C7"
],
"grade": "1",
"cluster": "0",
"id": "3C"
},
{
"specific_learning_outcome": "Identify materials to be used, and explain their choices.",
"general_learning_outcomes": [
"C2",
"C3",
"C4"
],
"grade": "1",
"cluster": "0",
"id": "3D"
},
{
"specific_learning_outcome": "Follow simple directions while undertaking explorations.",
"general_learning_outcomes": [
"C2"
],
"grade": "1",
"cluster": "0",
"id": "4A"
},
{
"specific_learning_outcome": "Construct an object or device to solve a problem or meet a need.",
"general_learning_outcomes": [
"C3"
],
"grade": "1",
"cluster": "0",
"id": "4B"
},
{
"specific_learning_outcome": "Test, with guidance, an object or device with respect to pre-determined criteria.",
"general_learning_outcomes": [
"C3",
"C5"
],
"grade": "1",
"cluster": "0",
"id": "4C"
},
{
"specific_learning_outcome": "Identify and make improvements to an object or device with respect to pre-determined criteria.",
"general_learning_outcomes": [
"C3"
],
"grade": "1",
"cluster": "0",
"id": "4D"
},
{
"specific_learning_outcome": "Respond to the ideas and actions of others in building their own understandings.",
"general_learning_outcomes": [
"C5",
"C7"
],
"grade": "1",
"cluster": "0",
"id": "4E"
},
{
"specific_learning_outcome": "Work in cooperative partnerships and groups.",
"general_learning_outcomes": [
"C7"
],
"grade": "1",
"cluster": "0",
"id": "4F"
},
{
"specific_learning_outcome": "Verbalize questions and ideas during classroom learning experiences.",
"general_learning_outcomes": [
"C6"
],
"grade": "1",
"cluster": "0",
"id": "4G"
},
{
"specific_learning_outcome": "Follow given safety procedures and rules.",
"general_learning_outcomes": [
"C1"
],
"grade": "1",
"cluster": "0",
"id": "4H"
},
{
"specific_learning_outcome": "Recognize safety symbols in their surroundings.",
"general_learning_outcomes": [
"C1"
],
"grade": "1",
"cluster": "0",
"id": "4I"
},
{
"specific_learning_outcome": "Observe using a combination of the senses.",
"general_learning_outcomes": [
"C2"
],
"grade": "1",
"cluster": "0",
"id": "5A"
},
{
"specific_learning_outcome": "Use, with guidance, appropriate materials and tools to measure and construct. Examples: use paper clips to measure the width of a desk",
"general_learning_outcomes": [
"C2",
"C3",
"C5"
],
"grade": "1",
"cluster": "0",
"id": "5B"
},
{
"specific_learning_outcome": "Estimate and measure the passage of time using non-standard units, and compare the duration of activities.",
"general_learning_outcomes": [
"C2",
"C3",
"C5"
],
"grade": "1",
"cluster": "0",
"id": "5C"
},
{
"specific_learning_outcome": "Select an appropriate non-standard unit, and estimate and measure length.",
"general_learning_outcomes": [
"C2",
"C3",
"C5"
],
"grade": "1",
"cluster": "0",
"id": "5D"
},
{
"specific_learning_outcome": "Record observations using drawings and tally charts.",
"general_learning_outcomes": [
"C2",
"C6"
],
"grade": "1",
"cluster": "0",
"id": "5E"
},
{
"specific_learning_outcome": "Construct, with guidance, concrete-object graphs and pictographs using 1:1 correspondence.",
"general_learning_outcomes": [
"C2",
"C6"
],
"grade": "1",
"cluster": "0",
"id": "6A"
},
{
"specific_learning_outcome": "Compare data using quantitative terms, and ask questions about the data gathered.",
"general_learning_outcomes": [
"A1",
"A2",
"C2",
"C5"
],
"grade": "1",
"cluster": "0",
"id": "6B"
},
{
"specific_learning_outcome": "Place materials and objects in a sequence or in groups using a single, given attribute or a single, self-determined attribute.",
"general_learning_outcomes": [
"C2",
"C3",
"C5"
],
"grade": "1",
"cluster": "0",
"id": "6C"
},
{
"specific_learning_outcome": "Propose an answer to the initial question based on their observations.",
"general_learning_outcomes": [
"A1",
"A2",
"C2"
],
"grade": "1",
"cluster": "0",
"id": "7A"
},
{
"specific_learning_outcome": "Propose a solution to the initial problem.",
"general_learning_outcomes": [
"C3"
],
"grade": "1",
"cluster": "0",
"id": "7B"
},
{
"specific_learning_outcome": "Identify new problems that arise.",
"general_learning_outcomes": [
"C3"
],
"grade": "1",
"cluster": "0",
"id": "7C"
},
{
"specific_learning_outcome": "Connect new experiences and information with prior knowledge.",
"general_learning_outcomes": [
"A2"
],
"grade": "1",
"cluster": "0",
"id": "7D"
},
{
"specific_learning_outcome": "Describe, in a variety of ways, what was done and what was observed. Examples: concrete materials, drawings, oral language.",
"general_learning_outcomes": [
"C6"
],
"grade": "1",
"cluster": "0",
"id": "7E"
},
{
"specific_learning_outcome": "Recognize that learning can come from careful observations and investigations.",
"general_learning_outcomes": [
"A1",
"A2",
"C2"
],
"grade": "1",
"cluster": "0",
"id": "8A"
},
{
"specific_learning_outcome": "Recognize that tools are developed in response to human needs.",
"general_learning_outcomes": [
"A3"
],
"grade": "1",
"cluster": "0",
"id": "8B"
},
{
"specific_learning_outcome": "Willingly consider other people's views.",
"general_learning_outcomes": [
"C5",
"C7"
],
"grade": "1",
"cluster": "0",
"id": "9A"
},
{
"specific_learning_outcome": "Willingly observe, question, and explore.",
"general_learning_outcomes": [
"C5"
],
"grade": "1",
"cluster": "0",
"id": "9B"
},
{
"specific_learning_outcome": "Express enjoyment of science-related classroom activities.",
"general_learning_outcomes": [
"C5"
],
"grade": "1",
"cluster": "0",
"id": "9C"
},
{
"specific_learning_outcome": "Take the time to measure with care.",
"general_learning_outcomes": [
"C5"
],
"grade": "1",
"cluster": "0",
"id": "9D"
},
{
"specific_learning_outcome": "Use appropriate vocabulary related to their investigations of characteristics and needs of living things. Include: characteristic, human, animal, plant, living things, needs, as well as descriptive words relating to life processes",
"general_learning_outcomes": [
"C6",
"D1"
],
"grade": "1",
"cluster": "1",
"id": "01"
},
{
"specific_learning_outcome": "Identify major parts of the human body and describe their functions. Examples: arms and legs for movement",
"general_learning_outcomes": [
"D1",
"E2"
],
"grade": "1",
"cluster": "1",
"id": "02"
},
{
"specific_learning_outcome": "Identify and describe common characteristics of humans and other animals they have observed. Examples: number of limbs, eyes, ears, skin",
"general_learning_outcomes": [
"D1",
"E1"
],
"grade": "1",
"cluster": "1",
"id": "03"
},
{
"specific_learning_outcome": "Identify and appreciate variations that make each human unique. Examples: eye colour, hair colour, body type",
"general_learning_outcomes": [
"C5",
"E1"
],
"grade": "1",
"cluster": "1",
"id": "04"
},
{
"specific_learning_outcome": "Recognize that plants, as living things, come in different forms. Examples: grass, trees, shrubs",
"general_learning_outcomes": [
"D1",
"E1"
],
"grade": "1",
"cluster": "1",
"id": "05"
},
{
"specific_learning_outcome": "Observe and identify similarities in life processes between themselves and other living things. Examples: they eat, sleep, grow and breathe, and so do other living things",
"general_learning_outcomes": [
"D1",
"E1"
],
"grade": "1",
"cluster": "1",
"id": "06"
},
{
"specific_learning_outcome": "Recognize that plants, animals, and humans, as living things, have particular needs. Examples: plants need sunlight and water",
"general_learning_outcomes": [
"D1"
],
"grade": "1",
"cluster": "1",
"id": "07"
},
{
"specific_learning_outcome": "Describe what is needed to care for a pet, a farm animal, or an indoor plant. Examples: provide fresh water for their hamster daily, feed and bed calves regularly",
"general_learning_outcomes": [
"B4",
"B5"
],
"grade": "1",
"cluster": "1",
"id": "08"
},
{
"specific_learning_outcome": "Compare ways in which humans and other animals meet their needs. Examples: senses, locomotion, tools",
"general_learning_outcomes": [
"C2",
"D1",
"E1"
],
"grade": "1",
"cluster": "1",
"id": "09"
},
{
"specific_learning_outcome": "Describe how humans and other living things depend on their environment to meet their needs. Examples: the environment provides humans and other living things with food",
"general_learning_outcomes": [
"D2",
"E2"
],
"grade": "1",
"cluster": "1",
"id": "10"
},
{
"specific_learning_outcome": "Design a representation of an environment that meets the needs of a Manitoba animal. Examples: a model, a diagram",
"general_learning_outcomes": [
"C3",
"D1"
],
"grade": "1",
"cluster": "1",
"id": "11"
},
{
"specific_learning_outcome": "Identify hobbies and jobs that require knowledge of the needs of living things. Examples: gardeners, nurses, zookeepers",
"general_learning_outcomes": [
"B4",
"B5"
],
"grade": "1",
"cluster": "1",
"id": "12"
},
{
"specific_learning_outcome": "Develop, implement, and evaluate personal and group action plans that contribute to a healthy environment for themselves and for other living things. Examples: wash hands before eating, reduce amount of waste produced by the class",
"general_learning_outcomes": [
"B3",
"B5",
"C4",
"C7"
],
"grade": "1",
"cluster": "1",
"id": "13"
},
{
"specific_learning_outcome": "Show respect for living things in their immediate environment. Examples: handling the class gerbil with care",
"general_learning_outcomes": [
"B5"
],
"grade": "1",
"cluster": "1",
"id": "14"
},
{
"specific_learning_outcome": "Recognize that some information they receive about living things is not scientific in nature. Examples: movie animals talking, Jack's beanstalk growing to the sky",
"general_learning_outcomes": [
"A1",
"C5",
"C8"
],
"grade": "1",
"cluster": "1",
"id": "15"
},
{
"specific_learning_outcome": "Use appropriate vocabulary related to their investigations of the senses. Include: senses, sight, smell, hearing, taste, touch, eye, nose, ear, tongue, skin, eyelash, eyebrow, eyelid, nostril, cartilage, nose hair, as well as descriptive words related to shape, colour, lustre, wetness, temperature, taste, odour, size, texture, pitch",
"general_learning_outcomes": [
"C6",
"D1",
"D3"
],
"grade": "1",
"cluster": "2",