简单使用Knockout.js和Datatables.js 分页

添加与KnockoutJS绑定的表格数据的简单分页,排序和搜索的示例

index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>使用DataTables进行简单的KnockoutJS分页</title>

    <!-- Bootstrap -->
    <link rel="stylesheet" type="text/css" href="https://cdn.bootcss.com/twitter-bootstrap/3.4.0/css/bootstrap.css">
    <link rel="stylesheet" type="text/css" href="http://cdn.datatables.net/plug-ins/28e7751dbec/integration/bootstrap/3/dataTables.bootstrap.css">
    <link rel="stylehseet" type="text/css" href="https://cdn.datatables.net/responsive/2.2.3/css/responsive.dataTables.min.css">
    <!-- HTML5 Shim and Respond.js IE8  IE8支持HTML5元素和media queries -->
    <!-- WARNING: 如果您通过file://  查看页面,则Respond.js不起作用 -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <div class="container">

      <header class="page-header">
        <h1>使用DataTables进行简单的KnockoutJS分页</h1>
      </header>

      <p class="lead">该演示从 <a href="http://data.donorschoose.org/" target="_blank">Donors Choose Data API</a>中提取数据以演示如何使用KnockoutJS绑定数据和DataTable进行分页,排序和搜索。阅读更多<a href="http://brudtkuhl.com/easy-knockoutjs-pagination-data-tables/">博客文章</a>.
      <header class="page-header">
        <h2>Demo <small>从50310中提取50个提案</small></h2>
      </header>

      <!-- 我们也使用DataTables魔法表格,使用Knockout Foreach填充的数据迭代视图模型 -->
      <table id="proposals" class="table table-striped table-bordered">
        <thead>
          <tr>
            <th>项目</th>
            <th>学校</th>
            <th>% 资助</th>
          </tr>
        </thead>
        <tbody>
        <!-- ko foreach: proposals() -->
          <tr>
            <td><a data-bind="attr: { href: $data.proposalURL }, html: $data.title" target="_blank"></a></td>
            <td><span data-bind="text: $data.schoolName"></span></td>
            <td><span data-bind="text: $data.percentFunded"></span></td>
          </tr>
        <!-- /ko -->
        </tbody>
      </table>

      <header class="page-header">
        <h2>代码</h2>
      </header>
 
      <header class="page-header">
        <h2>依赖</h2>
      </header>

      <ul>
        <li><a href="http://jquery.com">jQuery</a></li>
        <li><a href="http://getbootstrap.com">Bootstrap</a></li>
        <li><a href="http://knockoutjs.com/">KnockoutJS</a></li>
        <li><a href="http://knockoutjs.com/documentation/plugins-mapping.html">KnockoutJS Mapping Plugin</a></li>
        <li><a href="http://datatables.net/">DataTables</a></li>
        <li><a href="http://datatables.net/manual/styling/bootstrap">DataTables Bootstrap</a></li>
      </ul>

      <hr />

      <footer>
        <p class="text-muted text-center">2019</p>
      </footer>

    </div>

    <!--所有脚本-->
    <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.js"></script>
    <script src="https://cdn.bootcss.com/twitter-bootstrap/3.4.0/js/bootstrap.js"></script>
    <script src="https://cdn.bootcss.com/knockout/3.4.2/knockout-min.js"></script>
    <script src="https://cdn.bootcss.com/knockout.mapping/2.4.1/knockout.mapping.js"></script>
    <script src="https://cdn.bootcss.com/datatables/1.10.5/js/jquery.dataTables.js"></script> 
    <script src="http://cdn.datatables.net/plug-ins/28e7751dbec/integration/bootstrap/3/dataTables.bootstrap.js"></script>
    <script src="https://cdn.datatables.net/responsive/2.2.3/js/dataTables.responsive.min.js"></script>

    <script>
      $(function() {
        //knockout视图模型
        function ViewModel(data) {
          var self = this;

          //knockout映射JSON数据到视图模型
          ko.mapping.fromJS(data, {}, self);
        }

        //获取数据- 来自 Donors Choose API
        $.getJSON("http://api.donorschoose.org/common/json_feed.html?zip=50310&APIKey=DONORSCHOOSE&max=50&callback=?", function(data) {

          // 绑定数据
          ko.applyBindings(new ViewModel(data));

          // 应用DataTables魔法表格
          $("#proposals").DataTable( {
		  language: {
				url: 'Chinese.json'
		  },
		  responsive: true 
		  } );
        });
      });
    </script>

  </body>
</html>

Chinese.json

{
    "sProcessing":   "处理中...",
    "sLengthMenu":   "显示 _MENU_ 项结果",
    "sZeroRecords":  "没有匹配结果",
    "sInfo":         "显示第 _START_ 至 _END_ 项结果,共 _TOTAL_ 项",
    "sInfoEmpty":    "显示第 0 至 0 项结果,共 0 项",
    "sInfoFiltered": "(由 _MAX_ 项结果过滤)",
    "sInfoPostFix":  "",
    "sSearch":       "搜索:",
    "sUrl":          "",
    "sEmptyTable":     "表中数据为空",
    "sLoadingRecords": "载入中...",
    "sInfoThousands":  ",",
    "oPaginate": {
        "sFirst":    "首页",
        "sPrevious": "上页",
        "sNext":     "下页",
        "sLast":     "末页"
    },
    "oAria": {
        "sSortAscending":  ": 以升序排列此列",
        "sSortDescending": ": 以降序排列此列"
    }
}

API获取的数据

{
	"searchTerms": "Most urgent",
	"searchURL": "https://www.donorschoose.org/donors/search.html?zip=50310&utm_source=api&utm_medium=feed&utm_content=searchlink&utm_campaign=DONORSCHOOSE",
	"totalProposals": "56884",
	"index": "0",
	"max": "50",
	"breadcrumb": [
		[
			"zip",
			"50310",
			""
		],
		[
			"max",
			"100",
			""
		]
	],
	"latitude": 41.62896728515625,
	"longitude": -93.6618423461914,
	"proposals": [{
			"id": "3858059",
			"proposalURL": "https://www.donorschoose.org/project/bring-us-our-science-technology/3858059/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3858059&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5725316_sm.jpg?timestamp=1546475435172",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5725316_retina.jpg?timestamp=1546475435172",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5725316_thmb.jpg?timestamp=1546475435172",
			"title": "Bring Us Our Science Technology!",
			"shortDescription": "My students come to school everyday to feel loved and supported while they get a quality education. They deserve the best opportunities at our school because they don't always have them outside of...",
			"fulfillmentTrailer": "Help me give my students Amazon Fire Tablets so they can access technology in class.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "1000.64",
			"studentLed": false,
			"numStudents": "110",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "VERIZON19",
				"ownerRegion": "",
				"name": "Verizon",
				"donorSalutation": "Verizon",
				"type": "AUTO_DONATION_MATCH",
				"matchImpactMultiple": 1.5,
				"multipleForDisplay": "1.5X",
				"logoURL": "https://cdn.donorschoose.net/images/logos/verizon_250.png",
				"faqURL": "https://www.donorschoose.org/donors/matching_grant_popup.html?matchingKey=VERIZON19",
				"amount": "0.00",
				"description": "<p align=\"center\"><img src=\"https://cdn.donorschoose.net/images/logos/verizon_250.png\"><\/p>\r\n\r\n<p>Donations to this project are now being matched, thanks to support from Verizon. Verizon is helping to give millions of kids a brighter future. We're putting technology, access, and innovative learning programs in the hands of students to put them on the path to success.<\/p>\r\n\r\n<p>Through proceeds from our education device trade-in program, we're proud to support technology projects on DonorsChoose.org.<\/p>\r\n\r\n<p><a target=\"_blank\" href=\"../donors/search.html?matchingId=1462\">See all projects eligible for this match offer.<\/a><\/p>"
			},
			"teacherFFPromoCodeFund": {
				"eligible": "true",
				"deadline": "January 10",
				"code": "LIFTOFF",
				"matchingKey": "LIFTOFF19",
				"ownerRegion": "",
				"name": "New Teacher Fund",
				"donorSalutation": "New Teacher Fund",
				"type": "PROMO",
				"logoURL": "liftoff.gif",
				"description": ""
			},
			"totalPrice": "1000.64",
			"freeShipping": "true",
			"teacherId": "5725316",
			"teacherName": "Mrs. Simonsen",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "Nearly all students from low‑income households",
			"povertyType": {
				"label": "HIGHEST",
				"name": "Nearly all students from low‑income households",
				"range": "90%+",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 17,
					"name": "Kia (partner)"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				}
			],
			"schoolName": "Harding Middle School",
			"schoolUrl": "https://www.donorschoose.org/school/harding-middle-school/51890/",
			"city": "Des Moines",
			"zip": "50313-4559",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.627556000000000",
			"longitude": "-93.616076000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "7",
				"name": "Environmental Science",
				"groupId": "4"
			},
			"resource": {
				"id": "7",
				"name": "Computers &amp; Tablets"
			},
			"expirationDate": "2019-05-02",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3746923",
			"proposalURL": "https://www.donorschoose.org/project/help-diversify-our-classroom-library-and/3746923/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3746923&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3131207_sm.jpg?timestamp=1520276411301",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3131207_retina.jpg?timestamp=1520276411301",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3131207_thmb.jpg?timestamp=1520276411301",
			"title": "Help Diversify Our Classroom Library and Promote Hands-On Math!",
			"shortDescription": "Students in my classroom each have their own set of academic goals as outlined in their Individualized Education Plan (IEP). These students spend the majority of their day in my classroom to help...",
			"fulfillmentTrailer": "Help me give my students books to make our classroom library more diverse as well as items to help my students understand regrouping in math!",
			"snippets": [],
			"percentFunded": "9",
			"numDonors": "2",
			"costToComplete": "534.67",
			"studentLed": false,
			"numStudents": "100",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "586.73",
			"freeShipping": "false",
			"teacherId": "3131207",
			"teacherName": "Ms. Mackey",
			"gradeLevel": {
				"id": "4",
				"name": "Grades 9-12"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [{
				"id": 9,
				"name": "NEA member"
			}],
			"schoolTypes": [{
					"id": 17,
					"name": "Kia (partner)"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				}
			],
			"schoolName": "Roosevelt High School",
			"schoolUrl": "https://www.donorschoose.org/school/roosevelt-high-school/51921/",
			"city": "Des Moines",
			"zip": "50312-2299",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.591815000000000",
			"longitude": "-93.678078000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-03-05",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3676556",
			"proposalURL": "https://www.donorschoose.org/project/make-it-happen/3676556/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3676556&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"retinaImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"thumbImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"title": "Make It Happen!",
			"shortDescription": "Our high school runs a program aimed at young adults with intellectual disabilities. Our main goal is to provide them with the necessary skills to be successful and independent adults. We provide...",
			"fulfillmentTrailer": "Help me give my students a Cricut maker to help build their skills!  We currently run a clothing closet and are in need of materials to label and sort clothing.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "519.67",
			"studentLed": false,
			"numStudents": "4",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "519.67",
			"freeShipping": "true",
			"teacherId": "5945542",
			"teacherName": "Mrs. Haddinger",
			"gradeLevel": {
				"id": "4",
				"name": "Grades 9-12"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 6,
					"name": "Vocational Education"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				},
				{
					"id": 14,
					"name": "Kia (partner)"
				}
			],
			"schoolName": "Urbandale High School",
			"schoolUrl": "https://www.donorschoose.org/school/urbandale-high-school/51955/",
			"city": "Urbandale",
			"zip": "50322-1741",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.636704000000000",
			"longitude": "-93.715038000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "21",
				"name": "Community Service",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "16",
				"name": "Art Supplies"
			},
			"expirationDate": "2019-02-23",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3652803",
			"proposalURL": "https://www.donorschoose.org/project/fishing-fun-in-physical-education/3652803/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3652803&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3722540_sm.png?timestamp=1540261693727",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3722540_retina.png?timestamp=1540261693727",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3722540_thmb.png?timestamp=1540261693727",
			"title": "Fishing Fun in Physical Education",
			"shortDescription": "In my physical education class and district we will bring learning to life for every student we work with. Our physical education program is made up of 960 eager learners. Our classroom is student...",
			"fulfillmentTrailer": "Help me give my students fishing rods for an opportunity to learn to fish as part of their physical education curriculum.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "416.94",
			"studentLed": false,
			"numStudents": "960",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "416.94",
			"freeShipping": "true",
			"teacherId": "3722540",
			"teacherName": "Mr. Brown",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				},
				{
					"id": 14,
					"name": "Kia (partner)"
				}
			],
			"schoolName": "Urbandale Middle School",
			"schoolUrl": "https://www.donorschoose.org/school/urbandale-middle-school/51956/",
			"city": "Urbandale",
			"zip": "50322-1723",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.636728000000000",
			"longitude": "-93.724037000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "29",
				"name": "Gym &amp; Fitness",
				"groupId": "2"
			},
			"resource": {
				"id": "13",
				"name": "Reading Nooks, Desks &amp; Storage"
			},
			"expirationDate": "2019-02-22",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3686176",
			"proposalURL": "https://www.donorschoose.org/project/a-safe-space-where-all-are-welcome/3686176/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3686176&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5959001_sm.jpg?timestamp=1544466705086",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5959001_retina.jpg?timestamp=1544466705086",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5959001_thmb.jpg?timestamp=1544466705086",
			"title": "A Safe Space Where All Are Welcome!",
			"shortDescription": "We are a a full-service high school that provides student support in the areas of education, emotional support, life skills lessons, and employment services. The aim of the school is to support...",
			"fulfillmentTrailer": "Help me give my students a safe and inviting space in the classroom. The Gramercy Wicker Patio Seating set is a good quality, durable set of furniture which ensures long-term use by hundreds of students over the years!",
			"snippets": [],
			"percentFunded": "32",
			"numDonors": "8",
			"costToComplete": "1017.32",
			"studentLed": false,
			"numStudents": "50",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "1496.61",
			"freeShipping": "true",
			"teacherId": "5959001",
			"teacherName": "Ms. Kerrin",
			"gradeLevel": {
				"id": "4",
				"name": "Grades 9-12"
			},
			"povertyLevel": "More than three‑quarters of students from low‑income households",
			"povertyType": {
				"label": "HIGH",
				"name": "More than three‑quarters of students from low‑income households",
				"range": "76-89%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [{
				"id": 9,
				"name": "NEA member"
			}],
			"schoolTypes": [{
					"id": 17,
					"name": "Kia (partner)"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 18,
					"name": "Alternative"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Scavo Alternative High School",
			"schoolUrl": "https://www.donorschoose.org/school/scavo-campus/51887/",
			"city": "Des Moines",
			"zip": "50309-3310",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.583839000000000",
			"longitude": "-93.641815000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "26",
				"name": "Character Education",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "27",
				"name": "Health &amp; Wellness",
				"groupId": "2"
			}],
			"resource": {
				"id": "13",
				"name": "Reading Nooks, Desks &amp; Storage"
			},
			"expirationDate": "2019-02-07",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3722072",
			"proposalURL": "https://www.donorschoose.org/project/headphones-for-auditory-learning/3722072/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3722072&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3807822_sm.jpg?timestamp=1479223440598",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3807822_retina.jpg?timestamp=1479223440598",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3807822_thmb.jpg?timestamp=1479223440598",
			"title": "Headphones for Auditory Learning",
			"shortDescription": "I work as a middle school literacy special education teacher in an urban school. I have students from all backgrounds and cultures. One thing that is consistent with all my students is that they...",
			"fulfillmentTrailer": "Help me give my students new headphones to replace broken ones and command hooks to help store them safely.",
			"snippets": [],
			"percentFunded": "42",
			"numDonors": "5",
			"costToComplete": "125.86",
			"studentLed": false,
			"numStudents": "30",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "215.86",
			"freeShipping": "true",
			"teacherId": "3807822",
			"teacherName": "Mrs. Smithman",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Merrill Middle School",
			"schoolUrl": "https://www.donorschoose.org/school/merrill-middle-school/51909/",
			"city": "Des Moines",
			"zip": "50312-2123",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.583394000000000",
			"longitude": "-93.689404000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			},
			"resource": {
				"id": "8",
				"name": "Instructional Technology"
			},
			"expirationDate": "2019-02-23",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3720951",
			"proposalURL": "https://www.donorschoose.org/project/books-for-gifted/3720951/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3720951&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3843561_sm.jpg?timestamp=1525354609394",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3843561_retina.jpg?timestamp=1525354609394",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3843561_thmb.jpg?timestamp=1525354609394",
			"title": "Books for Gifted",
			"shortDescription": "My Extended Learning classroom is a place for gifted students to experience challenge and discover who they are and how they will use this ability to change the world. <br /><br />Students will spend this...",
			"fulfillmentTrailer": "Help me give my students books to read that will challenge their reading.",
			"snippets": [],
			"percentFunded": "62",
			"numDonors": "6",
			"costToComplete": "77.86",
			"studentLed": false,
			"numStudents": "500",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "203.86",
			"freeShipping": "true",
			"teacherId": "3843561",
			"teacherName": "Ms. Murillo",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				}
			],
			"schoolName": "Crossroads Park Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/crossroads-park-elementary-school/42721/",
			"city": "W Des Moines",
			"zip": "50266-4902",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.586765000000000",
			"longitude": "-93.714325000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			},
			"resource": {
				"id": "9",
				"name": "Books"
			},
			"expirationDate": "2019-02-23",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3640726",
			"proposalURL": "https://www.donorschoose.org/project/sparking-creativity-and-problem-solving/3640726/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3640726&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5400499_sm.jpg?timestamp=1537646844866",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5400499_retina.jpg?timestamp=1537646844866",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5400499_thmb.jpg?timestamp=1537646844866",
			"title": "Sparking Creativity and Problem Solving with STEM Bins",
			"shortDescription": "I teach a diverse group of 26 kindergarten students. Our classroom is a community where the focus is on the students. They are sponges, with the ability to acquire endless amounts of knowledge....",
			"fulfillmentTrailer": "Help me give my students morning STEM activities, like the Design Build Engineering Centers and literacy bins to promote student creativity, challenge their thinking, and accompany our soft start school days.",
			"snippets": [],
			"percentFunded": "71",
			"numDonors": "10",
			"costToComplete": "173.38",
			"studentLed": false,
			"numStudents": "26",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "596.05",
			"freeShipping": "true",
			"teacherId": "5400499",
			"teacherName": "Mrs. Okones",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				}
			],
			"schoolName": "Crossroads Park Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/crossroads-park-elementary-school/42721/",
			"city": "W Des Moines",
			"zip": "50266-4902",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.586765000000000",
			"longitude": "-93.714325000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "18",
				"name": "Early Development",
				"groupId": "5"
			},
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-01-22",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3805278",
			"proposalURL": "https://www.donorschoose.org/project/the-importance-of-meeting-sensory-needs/3805278/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3805278&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5495322_sm.jpg?timestamp=1530239033644",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5495322_retina.jpg?timestamp=1530239033644",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5495322_thmb.jpg?timestamp=1530239033644",
			"title": "The Importance of Meeting Sensory Needs",
			"shortDescription": "My students attend a public elementary school and are served in a classroom for their significant cognitive disabilities. They range from kindergarten to fifth grade, from verbal to nonverbal, and...",
			"fulfillmentTrailer": "Help me give my students access to sensory and adaptive items. Sensory items are chair cushions, bilibo chairs, and body sox.",
			"snippets": [],
			"percentFunded": "7",
			"numDonors": "1",
			"costToComplete": "322.92",
			"studentLed": false,
			"numStudents": "9",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "346.45",
			"freeShipping": "false",
			"teacherId": "5495322",
			"teacherName": "Ms. Myers",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "Nearly all students from low‑income households",
			"povertyType": {
				"label": "HIGHEST",
				"name": "Nearly all students from low‑income households",
				"range": "90%+",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 17,
					"name": "Kia (partner)"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "McKinley Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/mckinley-elementary-school/51907/",
			"city": "Des Moines",
			"zip": "50315-1469",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.573193000000000",
			"longitude": "-93.605949000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			},
			"resource": {
				"id": "18",
				"name": "Food, Clothing &amp; Hygiene"
			},
			"expirationDate": "2019-03-30",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3633771",
			"proposalURL": "https://www.donorschoose.org/project/be-kind-the-world-is-brutal-enough/3633771/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3633771&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3972678_sm.jpg?timestamp=1522275027164",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3972678_retina.jpg?timestamp=1522275027164",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3972678_thmb.jpg?timestamp=1522275027164",
			"title": "Be Kind. The World Is Brutal Enough.",
			"shortDescription": "Our middle school is comprised of over 750 amazing students, many of whom come from bilingual households and receive free or reduced price lunch. There are more than five cultures present in our...",
			"fulfillmentTrailer": "Help me give my students transfer paper to iron on their personalized messages promoting positivity.",
			"snippets": [],
			"percentFunded": "34",
			"numDonors": "6",
			"costToComplete": "381.48",
			"studentLed": false,
			"numStudents": "650",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "575.28",
			"freeShipping": "true",
			"teacherId": "3972678",
			"teacherName": "Mrs. Ferguson",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Brody Middle School",
			"schoolUrl": "https://www.donorschoose.org/school/brody-middle-school/51873/",
			"city": "Des Moines",
			"zip": "50321-1599",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.555557000000000",
			"longitude": "-93.651383000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "26",
				"name": "Character Education",
				"groupId": "5"
			},
			"resource": {
				"id": "16",
				"name": "Art Supplies"
			},
			"expirationDate": "2019-01-19",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3827990",
			"proposalURL": "https://www.donorschoose.org/project/sphero-for-steam/3827990/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3827990&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3155777_sm.jpg?timestamp=1443038913796",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3155777_retina.jpg?timestamp=1443038913796",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3155777_thmb.jpg?timestamp=1443038913796",
			"title": "Sphero for STEAM",
			"shortDescription": "Previously I have taught language arts, and my position is now that of a science teacher. As such, I have little accumulated in the way of supplies to work with when it comes to helping students...",
			"fulfillmentTrailer": "Help me give my students 3 Sphero robots to increase our STEAM practices!",
			"snippets": [],
			"percentFunded": "37",
			"numDonors": "6",
			"costToComplete": "636.00",
			"studentLed": false,
			"numStudents": "100",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "SPHERO19",
				"ownerRegion": "",
				"name": "Sphero",
				"donorSalutation": "Sphero",
				"type": "AUTO_DONATION_MATCH",
				"matchImpactMultiple": 2,
				"multipleForDisplay": "2X",
				"logoURL": "https://cdn.donorschoose.net/images/logos/sphero_250.png",
				"faqURL": "https://www.donorschoose.org/donors/matching_grant_popup.html?matchingKey=SPHERO19",
				"amount": "0.00",
				"description": "<p align=\"center\"><img src=\"https://cdn.donorschoose.net/images/logos/sphero_250.png\"><\/p>\r\n\r\n<p>Donations to this project are now being matched, thanks to support from Sphero. Donations to Sphero projects are being matched in support with key Sphero partners - Anchor Point Foundation, Silicon Valley Bank, Needham & Company, Flex Logistics, Foundry Group, and Nasco. At Sphero, we believe every student should have access to high-quality STEAM and computer science education tools.<\/p>\r\n\r\n<p>We are excited for DonorsChoose.org teachers to empower the future creators of tomorrow with Sphero robots and STEAM learning activities through the use of our Sphero Edu app, nurturing students' creativity while gaining 21st-century skills.<\/p>\r\n\r\n<p><a target=\"_blank\" href=\"../donors/search.html?matchingId=1560\">See all projects eligible for this match offer.<\/a><\/p>"
			},
			"totalPrice": "1001.82",
			"freeShipping": "false",
			"teacherId": "3155777",
			"teacherName": "Mrs. Robinson",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [{
				"id": 9,
				"name": "NEA member"
			}],
			"schoolTypes": [{
					"id": 17,
					"name": "Kia (partner)"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				}
			],
			"schoolName": "Goodrell Middle School",
			"schoolUrl": "https://www.donorschoose.org/school/goodrell-middle-school/51886/",
			"city": "Des Moines",
			"zip": "50317",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.625737538091045",
			"longitude": "-93.561160684885266",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "6",
				"name": "Applied Sciences",
				"groupId": "4"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "9",
				"name": "Books"
			},
			"expirationDate": "2019-04-11",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3683740",
			"proposalURL": "https://www.donorschoose.org/project/an-ipad-for-osmo/3683740/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3683740&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5956028_sm.jpg?timestamp=1539523322450",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5956028_retina.jpg?timestamp=1539523322450",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5956028_thmb.jpg?timestamp=1539523322450",
			"title": "An iPad for Osmo!",
			"shortDescription": "I have a class of 25 diverse learners. They all enjoy learning through hands-on activities. My students participate in teaming activities daily which is very helpful to all of the different...",
			"fulfillmentTrailer": "Help me give my students an iPad to interact with learning through OSMO!",
			"snippets": [],
			"percentFunded": "5",
			"numDonors": "2",
			"costToComplete": "553.40",
			"studentLed": false,
			"numStudents": "25",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "583.40",
			"freeShipping": "true",
			"teacherId": "5956028",
			"teacherName": "Mrs. Martin",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Jefferson Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/jefferson-elementary-school/51898/",
			"city": "Des Moines",
			"zip": "50321-2146",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.549168000000000",
			"longitude": "-93.650398000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "7",
				"name": "Computers &amp; Tablets"
			},
			"expirationDate": "2019-02-11",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3699450",
			"proposalURL": "https://www.donorschoose.org/project/flexible-classroom/3699450/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3699450&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3277048_sm.jpg?timestamp=1522450331531",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3277048_retina.jpg?timestamp=1522450331531",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3277048_thmb.jpg?timestamp=1522450331531",
			"title": "Flexible Classroom",
			"shortDescription": "I teach in a wonderful school that values the education of all children. I have 24 students that bring a wide range of qualities and personalities into my classroom. There is never a challenge too...",
			"fulfillmentTrailer": "Help me give my students more flexible seating options  with bouncy bands and stools and a display for new books!",
			"snippets": [],
			"percentFunded": "9",
			"numDonors": "2",
			"costToComplete": "178.34",
			"studentLed": false,
			"numStudents": "24",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "195.11",
			"freeShipping": "true",
			"teacherId": "3277048",
			"teacherName": "Ms. Robinson",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Jefferson Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/jefferson-elementary-school/51898/",
			"city": "Des Moines",
			"zip": "50321-2146",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.549168000000000",
			"longitude": "-93.650398000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "18",
				"name": "Early Development",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "17",
				"name": "Extracurricular",
				"groupId": "5"
			}],
			"resource": {
				"id": "12",
				"name": "Flexible Seating"
			},
			"expirationDate": "2019-02-20",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3681670",
			"proposalURL": "https://www.donorschoose.org/project/whats-happening-lets-see-the-great/3681670/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3681670&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u2088569_sm.jpg?timestamp=1463625390566",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u2088569_retina.jpg?timestamp=1463625390566",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u2088569_thmb.jpg?timestamp=1463625390566",
			"title": "What&#039;s Happening? Let&#039;s See the Great!",
			"shortDescription": "Our students love our school. Students",
			"fulfillmentTrailer": "I need an Ipad with some storage to video the AMAZING things happening when adding structures to partner conversations.  These videos will be shared only with teachers in my building.",
			"snippets": [],
			"percentFunded": "3",
			"numDonors": "1",
			"costToComplete": "568.40",
			"studentLed": false,
			"numStudents": "310",
			"professionalDevelopment": true,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "583.40",
			"freeShipping": "true",
			"teacherId": "2088569",
			"teacherName": "Mrs. E.",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than three‑quarters of students from low‑income households",
			"povertyType": {
				"label": "HIGH",
				"name": "More than three‑quarters of students from low‑income households",
				"range": "76-89%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [{
				"id": 9,
				"name": "NEA member"
			}],
			"schoolTypes": [{
					"id": 17,
					"name": "Kia (partner)"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Howe Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/howe-elementary-school/51893/",
			"city": "Des Moines",
			"zip": "50315-2049",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.558083000000000",
			"longitude": "-93.603912000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "26",
				"name": "Character Education",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "13",
				"name": "Civics &amp; Government",
				"groupId": "3"
			}],
			"resource": {
				"id": "7",
				"name": "Computers &amp; Tablets"
			},
			"expirationDate": "2019-02-05",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3644306",
			"proposalURL": "https://www.donorschoose.org/project/headphones-needed-for-reading-center/3644306/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3644306&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5145755_sm.jpg?timestamp=1539707534877",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5145755_retina.jpg?timestamp=1539707534877",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5145755_thmb.jpg?timestamp=1539707534877",
			"title": "Headphones Needed for Reading Center!",
			"shortDescription": "I teach 8th grade Literacy and Advanced ELL classes. My kiddos are curious and full of energy. All of my students are focused on preparing for high school next year and highly motivated to be...",
			"fulfillmentTrailer": "Help me give my students headphones to help listen to audiobooks in their own language and at their own pace!",
			"snippets": [],
			"percentFunded": "35",
			"numDonors": "3",
			"costToComplete": "334.01",
			"studentLed": false,
			"numStudents": "115",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "514.01",
			"freeShipping": "true",
			"teacherId": "5145755",
			"teacherName": "Mrs. B.",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "More than three‑quarters of students from low‑income households",
			"povertyType": {
				"label": "HIGH",
				"name": "More than three‑quarters of students from low‑income households",
				"range": "76-89%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 17,
					"name": "Kia (partner)"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Weeks Middle School",
			"schoolUrl": "https://www.donorschoose.org/school/weeks-middle-school/51928/",
			"city": "Des Moines",
			"zip": "50315-2498",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.555243000000000",
			"longitude": "-93.601539000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "25",
				"name": "ESL",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			}],
			"resource": {
				"id": "8",
				"name": "Instructional Technology"
			},
			"expirationDate": "2019-02-16",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3657125",
			"proposalURL": "https://www.donorschoose.org/project/under-desk-exercise-bike/3657125/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3657125&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5926893_sm.png?timestamp=1538158381051",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5926893_retina.png?timestamp=1538158381051",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5926893_thmb.png?timestamp=1538158381051",
			"title": "Under Desk Exercise Bike",
			"shortDescription": "All of my students have IEPs and are working on goals in either reading, writing, math, behavior and some even have communication goals. Some of my students are in my room for long periods of time...",
			"fulfillmentTrailer": "Help me give my students two DeskCycle Desk Exercise Bike Pedal Exercisers.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "440.65",
			"studentLed": false,
			"numStudents": "10",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "440.65",
			"freeShipping": "true",
			"teacherId": "5926893",
			"teacherName": "Mr. Larsen",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Jordan Creek Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/jordan-creek-elementary-school/58940/",
			"city": "W Des Moines",
			"zip": "50265-5318",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.559410000000000",
			"longitude": "-93.755897000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "27",
				"name": "Health &amp; Wellness",
				"groupId": "2"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "14",
				"name": "Sports &amp; Exercise Equipment"
			},
			"expirationDate": "2019-01-28",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3858713",
			"proposalURL": "https://www.donorschoose.org/project/reading-with-visuals/3858713/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3858713&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u6177723_sm.jpg?timestamp=1546534763001",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u6177723_retina.jpg?timestamp=1546534763001",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u6177723_thmb.jpg?timestamp=1546534763001",
			"title": "Reading with Visuals!",
			"shortDescription": "The students in our room have disabilities that include autism, intellectual disabilities and learning disabilities. Their disabilities make it so they require a lot of attention and support to be...",
			"fulfillmentTrailer": "Help me give my students the books that go along with the visuals to help them successfully understand what they are reading.",
			"snippets": [],
			"percentFunded": "22",
			"numDonors": "2",
			"costToComplete": "464.12",
			"studentLed": false,
			"numStudents": "21",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"teacherFFPromoCodeFund": {
				"eligible": "true",
				"deadline": "January 10",
				"code": "LIFTOFF",
				"matchingKey": "LIFTOFF19",
				"ownerRegion": "",
				"name": "New Teacher Fund",
				"donorSalutation": "New Teacher Fund",
				"type": "PROMO",
				"logoURL": "liftoff.gif",
				"description": ""
			},
			"totalPrice": "593.53",
			"freeShipping": "true",
			"teacherId": "6177723",
			"teacherName": "Mrs. Hadley and Illingworth",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than three‑quarters of students from low‑income households",
			"povertyType": {
				"label": "HIGH",
				"name": "More than three‑quarters of students from low‑income households",
				"range": "76-89%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 17,
					"name": "Kia (partner)"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Morris Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/morris-elementary-school/51903/",
			"city": "Des Moines",
			"zip": "50315-5463",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.525387000000000",
			"longitude": "-93.636421000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "9",
				"name": "Books"
			},
			"expirationDate": "2019-05-03",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3844928",
			"proposalURL": "https://www.donorschoose.org/project/testing-privacy/3844928/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3844928&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u2529261_sm.jpg?timestamp=1417115200948",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u2529261_retina.jpg?timestamp=1417115200948",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u2529261_thmb.jpg?timestamp=1417115200948",
			"title": "Testing Privacy",
			"shortDescription": "Despite the many challenges my students face, they work very hard during the school day and focus on their academics. At our school, more than half of our students receive free or reduced...",
			"fulfillmentTrailer": "Help me give my students testing shields for privacy and materials to make hands on activities for math.",
			"snippets": [],
			"percentFunded": "25",
			"numDonors": "3",
			"costToComplete": "147.24",
			"studentLed": false,
			"numStudents": "25",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "BASICS19",
				"ownerRegion": "",
				"name": "Someone Who Cares",
				"donorSalutation": "Someone Who Cares",
				"type": "AUTO_DONATION_MATCH",
				"matchImpactMultiple": 2,
				"multipleForDisplay": "2X",
				"logoURL": "https://cdn.donorschoose.net/images/logos/someonewhocares_250.png",
				"faqURL": "https://www.donorschoose.org/donors/matching_grant_popup.html?matchingKey=BASICS19",
				"amount": "0.00",
				"description": "<p align=\"center\"><img src=\"https://cdn.donorschoose.net/images/logos/someonewhocares_250.png\"><\/p>\r\n\r\n<p>Donations to this project are now being matched, thanks to support from Someone Who Cares. This holiday season, we want kids everywhere to have the pens, paper, and other classroom basics they need to learn.<\/p>\r\n\r\n<p><a target=\"_blank\" href=\"../donors/search.html?matchingId=1533\">See all projects eligible for this match offer.<\/a><\/p>"
			},
			"totalPrice": "197.24",
			"freeShipping": "false",
			"teacherId": "2529261",
			"teacherName": "Mrs. Ritter",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Pleasant Hill Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/pleasant-hill-elementary-school/51920/",
			"city": "Pleasant Hill",
			"zip": "50327-7113",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.586540000000000",
			"longitude": "-93.519279000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "10",
				"name": "Classroom Basics"
			},
			"expirationDate": "2019-04-20",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3744969",
			"proposalURL": "https://www.donorschoose.org/project/building-number-sense-for-a-stronger-m/3744969/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3744969&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u2529261_sm.jpg?timestamp=1417115200948",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u2529261_retina.jpg?timestamp=1417115200948",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u2529261_thmb.jpg?timestamp=1417115200948",
			"title": "Building Number Sense for a  Stronger Math Foundation Grade 2",
			"shortDescription": "Despite the many challenges my students face, they work very hard during the school day and focus on their academics. At our school, more than half of our students receive free or reduced...",
			"fulfillmentTrailer": "Help me give my students a strong math foundation using the ETA hand2mind Daily Math Fluency Kit with Number Strings, Math Talks (Grade 2)",
			"snippets": [],
			"percentFunded": "41",
			"numDonors": "3",
			"costToComplete": "170.18",
			"studentLed": false,
			"numStudents": "25",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "290.18",
			"freeShipping": "true",
			"teacherId": "2529261",
			"teacherName": "Mrs. Ritter",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Pleasant Hill Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/pleasant-hill-elementary-school/51920/",
			"city": "Pleasant Hill",
			"zip": "50327-7113",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.586540000000000",
			"longitude": "-93.519279000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-03-03",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3784995",
			"proposalURL": "https://www.donorschoose.org/project/pick-a-piccolo/3784995/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3784995&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5434074_sm.jpg?timestamp=1527616890303",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5434074_retina.jpg?timestamp=1527616890303",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5434074_thmb.jpg?timestamp=1527616890303",
			"title": "Pick a Piccolo!",
			"shortDescription": "My students are very enthusiastic about band! They love making music and love performing together. The band students perform throughout our community and state throughout the year, serving as...",
			"fulfillmentTrailer": "Help me give my students a piccolo to use with my 8th-grade band!",
			"snippets": [],
			"percentFunded": "20",
			"numDonors": "6",
			"costToComplete": "537.64",
			"studentLed": false,
			"numStudents": "110",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "672.64",
			"freeShipping": "true",
			"teacherId": "5434074",
			"teacherName": "Mr. Britt",
			"gradeLevel": {
				"id": "4",
				"name": "Grades 9-12"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 15,
					"name": "Kia (partner)"
				}
			],
			"schoolName": "Dallas Center-Grimes Meadows",
			"schoolUrl": "https://www.donorschoose.org/school/meadows/104311/",
			"city": "Grimes",
			"zip": "50111-4928",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.688362121582031",
			"longitude": "-93.797790527343750",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "12",
				"name": "Music",
				"groupId": "1"
			},
			"additionalSubjects": [{
				"id": "1",
				"name": "Performing Arts",
				"groupId": "1"
			}],
			"resource": {
				"id": "9",
				"name": "Books"
			},
			"expirationDate": "2019-03-22",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3680262",
			"proposalURL": "https://www.donorschoose.org/project/help-my-students-do-more-hands-on-learni/3680262/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3680262&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u937551_sm.jpg?timestamp=1351691916000",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u937551_retina.jpg?timestamp=1351691916000",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u937551_thmb.jpg?timestamp=1351691916000",
			"title": "Help My Students Do More Hands-on Learning!",
			"shortDescription": "Our school is a large, diverse school composed of students in grades 6-8. My students consist of over 100 students in 5 different classes. They are a kind, caring, and intelligent group of 8th...",
			"fulfillmentTrailer": "Help me give my students learning manipulatives called Versatiles and workbooks for independent and small group learning!",
			"snippets": [],
			"percentFunded": "1",
			"numDonors": "1",
			"costToComplete": "398.88",
			"studentLed": false,
			"numStudents": "100",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "403.88",
			"freeShipping": "true",
			"teacherId": "937551",
			"teacherName": "Mrs. Overturf",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "More than three‑quarters of students from low‑income households",
			"povertyType": {
				"label": "HIGH",
				"name": "More than three‑quarters of students from low‑income households",
				"range": "76-89%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [{
					"id": 11,
					"name": "U.S. Cellular teacher"
				},
				{
					"id": 5,
					"name": "SONIC Teacher"
				}
			],
			"schoolTypes": [{
					"id": 17,
					"name": "Kia (partner)"
				},
				{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "McCombs Middle School",
			"schoolUrl": "https://www.donorschoose.org/school/mccombs-middle-school/51906/",
			"city": "Des Moines",
			"zip": "50320-6301",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.512023000000000",
			"longitude": "-93.616888000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-02-04",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3768688",
			"proposalURL": "https://www.donorschoose.org/project/coding-with-legos/3768688/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3768688&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u2025049_sm.jpg?timestamp=1521896056090",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u2025049_retina.jpg?timestamp=1521896056090",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u2025049_thmb.jpg?timestamp=1521896056090",
			"title": "Coding With Legos",
			"shortDescription": "My students are excited to enter our classroom each day. They look forward to coming into our classroom each day, learning with their friends, and laughing along the way. Our days are productive,...",
			"fulfillmentTrailer": "Help me give my students a Lego Classic Large Creative Box and a Lego WeDo 2.0 Core Set.",
			"snippets": [],
			"percentFunded": "78",
			"numDonors": "8",
			"costToComplete": "74.39",
			"studentLed": false,
			"numStudents": "27",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "332.04",
			"freeShipping": "false",
			"teacherId": "2025049",
			"teacherName": "Mrs. Trader",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [{
					"id": 9,
					"name": "NEA member"
				},
				{
					"id": 11,
					"name": "U.S. Cellular teacher"
				},
				{
					"id": 5,
					"name": "SONIC Teacher"
				}
			],
			"schoolTypes": [],
			"schoolName": "Grant Ragan Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/grant-ragan-elementary/109429/",
			"city": "Waukee",
			"zip": "50263-9807",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.617710113525391",
			"longitude": "-93.866111755371100",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "6",
				"name": "Applied Sciences",
				"groupId": "4"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-03-15",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3857289",
			"proposalURL": "https://www.donorschoose.org/project/stem-and-coding/3857289/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3857289&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3851097_sm.jpg?timestamp=1504193392641",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3851097_retina.jpg?timestamp=1504193392641",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3851097_thmb.jpg?timestamp=1504193392641",
			"title": "STEM and Coding!",
			"shortDescription": "I'm entering my second year of teaching fourth grade and twelfth overall and am extremely excited about my class this year! They are extremely talented. I cannot believe the strides we've taken in...",
			"fulfillmentTrailer": "Help me give my students some more STEM related materials and games. The Star Wars coding robot has many different coding abilities and functions available to my students to challenge and strengthen their skills.",
			"snippets": [],
			"percentFunded": "66",
			"numDonors": "1",
			"costToComplete": "63.85",
			"studentLed": false,
			"numStudents": "20",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "188.85",
			"freeShipping": "true",
			"teacherId": "3851097",
			"teacherName": "Mr. Eischeid",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Grant Ragan Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/grant-ragan-elementary/109429/",
			"city": "Waukee",
			"zip": "50263-9807",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.617710113525391",
			"longitude": "-93.866111755371100",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "6",
				"name": "Applied Sciences",
				"groupId": "4"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-05-03",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3654182",
			"proposalURL": "https://www.donorschoose.org/project/using-technology-to-help-us-learn/3654182/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3654182&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5919155_sm.jpg?timestamp=1538073965920",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5919155_retina.jpg?timestamp=1538073965920",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5919155_thmb.jpg?timestamp=1538073965920",
			"title": "Using Technology to Help Us Learn!",
			"shortDescription": "The students at my Title I school come from a wide range of economic and cultural backgrounds, many who are English Language Learners.<br /><br />My diverse group of Kindergarteners loves to learn while...",
			"fulfillmentTrailer": "Help me give my students iPads with cases for the opportunity to use technology to enhance their learning in all areas.",
			"snippets": [],
			"percentFunded": "27",
			"numDonors": "3",
			"costToComplete": "670.58",
			"studentLed": false,
			"numStudents": "21",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "920.58",
			"freeShipping": "true",
			"teacherId": "5919155",
			"teacherName": "Mrs. Wood",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Woodland Hills Elementary",
			"schoolUrl": "https://www.donorschoose.org/school/woodland-hills-elementary/105145/",
			"city": "W Des Moines",
			"zip": "50266",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.548108309507370",
			"longitude": "-93.842060565948486",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "7",
				"name": "Computers &amp; Tablets"
			},
			"expirationDate": "2019-01-28",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3804973",
			"proposalURL": "https://www.donorschoose.org/project/technology-for-coffee/3804973/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3804973&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u959576_sm.jpg?timestamp=1481910686241",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u959576_retina.jpg?timestamp=1481910686241",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u959576_thmb.jpg?timestamp=1481910686241",
			"title": "Technology for Coffee",
			"shortDescription": "Students in my classroom are students with intellectual and physical disabilities, between the ages of 18-21. My students and their families have chose to have them remain at high school past...",
			"fulfillmentTrailer": "Help me give my students better access to technology as we run our coffee shop. The iPad will be used to access our online orders via a google form and as a cash register.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "455.93",
			"studentLed": false,
			"numStudents": "12",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "455.93",
			"freeShipping": "true",
			"teacherId": "959576",
			"teacherName": "Mrs. Llewellyn",
			"gradeLevel": {
				"id": "4",
				"name": "Grades 9-12"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Waukee High School",
			"schoolUrl": "https://www.donorschoose.org/school/waukee-high-school/51300/",
			"city": "Dallas Center",
			"zip": "50263",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.602242853605800",
			"longitude": "-93.885460000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "16",
				"name": "College &amp; Career Prep",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "7",
				"name": "Computers &amp; Tablets"
			},
			"expirationDate": "2019-03-30",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3775836",
			"proposalURL": "https://www.donorschoose.org/project/a-comfortable-spot-at-the-carpet/3775836/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3775836&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u4126067_sm.jpg?timestamp=1542511167400",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u4126067_retina.jpg?timestamp=1542511167400",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u4126067_thmb.jpg?timestamp=1542511167400",
			"title": "A Comfortable Spot at the Carpet",
			"shortDescription": "We are a first grade family in suburban Iowa. Our school highly values diversity, creativity and leadership and our classrooms definitely reflect that. We have a diverse population of learners and...",
			"fulfillmentTrailer": "Help me give my students a large rug for our carpet meeting space.",
			"snippets": [],
			"percentFunded": "33",
			"numDonors": "2",
			"costToComplete": "431.75",
			"studentLed": false,
			"numStudents": "24",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "645.87",
			"freeShipping": "true",
			"teacherId": "4126067",
			"teacherName": "Mrs. Folsom",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [{
				"id": 9,
				"name": "NEA member"
			}],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Maple Grove Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/maple-grove-elementary-school/95107/",
			"city": "Dallas Center",
			"zip": "50063",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.695789337158200",
			"longitude": "-93.931098937988281",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			},
			"resource": {
				"id": "13",
				"name": "Reading Nooks, Desks &amp; Storage"
			},
			"expirationDate": "2019-03-17",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3851878",
			"proposalURL": "https://www.donorschoose.org/project/i-see-sam-books-i-can-read-by-myself/3851878/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3851878&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u1107284_sm.jpg?timestamp=1474762287497",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u1107284_retina.jpg?timestamp=1474762287497",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u1107284_thmb.jpg?timestamp=1474762287497",
			"title": "I See Sam!  Books I Can Read by Myself!",
			"shortDescription": "Growing readers need the best quality texts! My school serves a diverse range of learners, ethnicities, languages, and income levels. I believe that is one of the best things about our school!...",
			"fulfillmentTrailer": "Help me give my students good decodable books.  They are very hard to find and these build upon skills learned at a slow enough pace to build mastery.  The stories are engaging and the students feel success!",
			"snippets": [],
			"percentFunded": "59",
			"numDonors": "4",
			"costToComplete": "247.04",
			"studentLed": false,
			"numStudents": "50",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "597.04",
			"freeShipping": "false",
			"teacherId": "1107284",
			"teacherName": "Ms. Manning",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [{
				"id": 9,
				"name": "NEA member"
			}],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Maple Grove Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/maple-grove-elementary-school/95107/",
			"city": "Dallas Center",
			"zip": "50063",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.695789337158200",
			"longitude": "-93.931098937988281",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "25",
				"name": "ESL",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			}],
			"resource": {
				"id": "9",
				"name": "Books"
			},
			"expirationDate": "2019-04-28",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3692478",
			"proposalURL": "https://www.donorschoose.org/project/crumpled-art-cries-for-your-help/3692478/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3692478&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3775746_sm.jpg?timestamp=1539180935512",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3775746_retina.jpg?timestamp=1539180935512",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3775746_thmb.jpg?timestamp=1539180935512",
			"title": "Crumpled ART Cries for Your Help",
			"shortDescription": "What I love about teaching my students is when they have changed their thinking from \"I can't\" to \"I can\". I love watching the growth they make in exploring art skills and trying new techniques...",
			"fulfillmentTrailer": "Help me give my students the ability to be able to put their own art work in to a drying rack. This rack will allow even a kindergartner to use it with out help.",
			"snippets": [],
			"percentFunded": "1",
			"numDonors": "2",
			"costToComplete": "1835.38",
			"studentLed": false,
			"numStudents": "264",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "1845.38",
			"freeShipping": "true",
			"teacherId": "3775746",
			"teacherName": "Teacher Cory",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				},
				{
					"id": 15,
					"name": "Kia (partner)"
				},
				{
					"id": 14,
					"name": "Kia (partner)"
				}
			],
			"schoolName": "Dallas Center Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/dallas-center-elementary-school/51290/",
			"city": "Dallas Center",
			"zip": "50063",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.673180000000000",
			"longitude": "-93.960200000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "11",
				"name": "Visual Arts",
				"groupId": "1"
			},
			"resource": {
				"id": "16",
				"name": "Art Supplies"
			},
			"expirationDate": "2019-02-10",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3786680",
			"proposalURL": "https://www.donorschoose.org/project/tidy-desk-tidy-mind/3786680/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3786680&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u340150_sm.jpg?timestamp=1239986086000",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u340150_retina.jpg?timestamp=1239986086000",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u340150_thmb.jpg?timestamp=1239986086000",
			"title": "Tidy Desk, Tidy Mind",
			"shortDescription": "First grade is a magical year where students' eyes are really opened to all there is to learn. Students come to school eager to discover new things and to explore the world around them. First...",
			"fulfillmentTrailer": "Help me give my students seat sacks to help them stay neat and organized in our learning environment.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "408.11",
			"studentLed": false,
			"numStudents": "20",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "408.11",
			"freeShipping": "false",
			"teacherId": "340150",
			"teacherName": "Mrs. Ford",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [{
					"id": 11,
					"name": "U.S. Cellular teacher"
				},
				{
					"id": 5,
					"name": "SONIC Teacher"
				},
				{
					"id": 7,
					"name": "U.S. Cellular Teacher"
				}
			],
			"schoolTypes": [{
				"id": 3,
				"name": "Special Education"
			}],
			"schoolName": "Ballard West Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/ballard-west-elementary-school/52101/",
			"city": "Slater",
			"zip": "50244",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.882741000000000",
			"longitude": "-93.676190000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "3",
				"name": "Literature &amp; Writing",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "13",
				"name": "Reading Nooks, Desks &amp; Storage"
			},
			"expirationDate": "2019-03-24",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3648456",
			"proposalURL": "https://www.donorschoose.org/project/scholastic-scope-magazines-for-avid-read/3648456/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3648456&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5195358_sm.jpg?timestamp=1537916700444",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5195358_retina.jpg?timestamp=1537916700444",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5195358_thmb.jpg?timestamp=1537916700444",
			"title": "Scholastic Scope Magazines for Avid Readers",
			"shortDescription": "My students are typical middle school students. They are highly curious about the world and love to gobble up reading materials. Most students prefer realistic fiction texts, but lately, they are...",
			"fulfillmentTrailer": "Help me give my students updated, current, monthly subscriptions. Scholastic Scope magazines provide students with a large range of reading materials that align with our current curriculum and standards.",
			"snippets": [],
			"percentFunded": "63",
			"numDonors": "9",
			"costToComplete": "153.21",
			"studentLed": false,
			"numStudents": "65",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "410.86",
			"freeShipping": "false",
			"teacherId": "5195358",
			"teacherName": "Ms. Huston",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Adel-De Soto-Minburn Middle School",
			"schoolUrl": "https://www.donorschoose.org/school/adel-de-soto-minburn-mid-school/51286/",
			"city": "Adel",
			"zip": "50003-2027",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.610498000000000",
			"longitude": "-94.016767000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "3",
				"name": "Literature &amp; Writing",
				"groupId": "6"
			}],
			"resource": {
				"id": "9",
				"name": "Books"
			},
			"expirationDate": "2019-02-25",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3772321",
			"proposalURL": "https://www.donorschoose.org/project/tools-for-transition/3772321/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3772321&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u6066137_sm.jpg?timestamp=1542386112650",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u6066137_retina.jpg?timestamp=1542386112650",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u6066137_thmb.jpg?timestamp=1542386112650",
			"title": "Tools for Transition",
			"shortDescription": "Vocational programming is a part of the functional curriculum instruction that is offered at GEC. GEC is a special education school that serves students with mental and behavioral disabilities. As...",
			"fulfillmentTrailer": "Help me give my students access to vocational task materials to build their skills.",
			"snippets": [],
			"percentFunded": "5",
			"numDonors": "2",
			"costToComplete": "735.46",
			"studentLed": false,
			"numStudents": "44",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "770.46",
			"freeShipping": "false",
			"teacherId": "6066137",
			"teacherName": "Mrs. Anderson",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Grandwood Education Center",
			"schoolUrl": "https://www.donorschoose.org/school/grandwood-education-center/107941/",
			"city": "Woodward",
			"zip": "50276-7509",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.882449015975000",
			"longitude": "-93.923061937093735",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "16",
				"name": "College &amp; Career Prep",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-03-16",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3774508",
			"proposalURL": "https://www.donorschoose.org/project/did-you-say-fine-motor-fun/3774508/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3774508&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5930092_sm.jpg?timestamp=1543438156700",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5930092_retina.jpg?timestamp=1543438156700",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5930092_thmb.jpg?timestamp=1543438156700",
			"title": "Did You Say, &#034;Fine Motor Fun?&#034;",
			"shortDescription": "There is a lot of enjoyment that comes from working in special education. I work in a special needs classroom with students that have intellectual impairments and require some kind of continual...",
			"fulfillmentTrailer": "Help me give my students an engaging way to build their fine motor skills.",
			"snippets": [],
			"percentFunded": "2",
			"numDonors": "1",
			"costToComplete": "428.01",
			"studentLed": false,
			"numStudents": "5",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "438.01",
			"freeShipping": "true",
			"teacherId": "5930092",
			"teacherName": "Mrs. Minick-Gude",
			"gradeLevel": {
				"id": "4",
				"name": "Grades 9-12"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Grandwood Education Center",
			"schoolUrl": "https://www.donorschoose.org/school/grandwood-education-center/107941/",
			"city": "Woodward",
			"zip": "50276-7509",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.882449015975000",
			"longitude": "-93.923061937093735",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			},
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-03-17",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3773394",
			"proposalURL": "https://www.donorschoose.org/project/new-locking-storage/3773394/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3773394&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3714680_sm.jpg?timestamp=1470454214025",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3714680_retina.jpg?timestamp=1470454214025",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3714680_thmb.jpg?timestamp=1470454214025",
			"title": "New Locking Storage",
			"shortDescription": "As a teacher in a Special Education school, I see the joys and struggles of all the students in the building. With only about 40 students and 9 classroom teachers, the small environment allows us...",
			"fulfillmentTrailer": "Help me give my students a new locking cupboard that will fit our classroom needs.",
			"snippets": [],
			"percentFunded": "6",
			"numDonors": "3",
			"costToComplete": "929.91",
			"studentLed": false,
			"numStudents": "5",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "989.91",
			"freeShipping": "true",
			"teacherId": "3714680",
			"teacherName": "Mrs. T.",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Grandwood Education Center",
			"schoolUrl": "https://www.donorschoose.org/school/grandwood-education-center/107941/",
			"city": "Woodward",
			"zip": "50276-7509",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.882449015975000",
			"longitude": "-93.923061937093735",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			},
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-03-19",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3772252",
			"proposalURL": "https://www.donorschoose.org/project/group-table-for-group-lessons/3772252/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3772252&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u4408472_sm.jpg?timestamp=1542385380559",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u4408472_retina.jpg?timestamp=1542385380559",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u4408472_thmb.jpg?timestamp=1542385380559",
			"title": "Group Table for Group Lessons",
			"shortDescription": "Our setting is a place that serves special education students whose needs just aren't met in a traditional school setting. Each student in my class has a wide variety of interests and abilities....",
			"fulfillmentTrailer": "Help me give my students a more conducive group table that will allow lessons to be done together and have direct access to the teacher at all times, while giving students personal space.",
			"snippets": [],
			"percentFunded": "49",
			"numDonors": "4",
			"costToComplete": "221.93",
			"studentLed": false,
			"numStudents": "5",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "431.93",
			"freeShipping": "false",
			"teacherId": "4408472",
			"teacherName": "Ms. Kooiker",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Grandwood Education Center",
			"schoolUrl": "https://www.donorschoose.org/school/grandwood-education-center/107941/",
			"city": "Woodward",
			"zip": "50276-7509",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.882449015975000",
			"longitude": "-93.923061937093735",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "26",
				"name": "Character Education",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "13",
				"name": "Reading Nooks, Desks &amp; Storage"
			},
			"expirationDate": "2019-03-16",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3771186",
			"proposalURL": "https://www.donorschoose.org/project/community-circle/3771186/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3771186&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u3714680_sm.jpg?timestamp=1470454214025",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u3714680_retina.jpg?timestamp=1470454214025",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u3714680_thmb.jpg?timestamp=1470454214025",
			"title": "Community Circle",
			"shortDescription": "As a teacher in a Special Education school, I see the joys and struggles of all the students in the building. Having only about 40 students and classroom teachers, the small environment allows us...",
			"fulfillmentTrailer": "Help me give my students social skills books that are needed to teach coping when frustrated.  I also want another kidney table to make one large circle, to create a community feeling.",
			"snippets": [],
			"percentFunded": "59",
			"numDonors": "5",
			"costToComplete": "217.88",
			"studentLed": false,
			"numStudents": "5",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "527.88",
			"freeShipping": "false",
			"teacherId": "3714680",
			"teacherName": "Mrs. T.",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Grandwood Education Center",
			"schoolUrl": "https://www.donorschoose.org/school/grandwood-education-center/107941/",
			"city": "Woodward",
			"zip": "50276-7509",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.882449015975000",
			"longitude": "-93.923061937093735",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			},
			"resource": {
				"id": "13",
				"name": "Reading Nooks, Desks &amp; Storage"
			},
			"expirationDate": "2019-03-16",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3776062",
			"proposalURL": "https://www.donorschoose.org/project/multi-sensory-lets-make-your-mark/3776062/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3776062&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5930092_sm.jpg?timestamp=1543438156700",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5930092_retina.jpg?timestamp=1543438156700",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5930092_thmb.jpg?timestamp=1543438156700",
			"title": "Multi-Sensory: Let&#039;s Make Your Mark",
			"shortDescription": "There is a lot of enjoyment that comes from working in special education. I work in a special needs classroom with students that have intellectual impairments and require some kind of continual...",
			"fulfillmentTrailer": "Help me give my students the opportunity for small group academic achievement and social skills interaction.",
			"snippets": [],
			"percentFunded": "26",
			"numDonors": "4",
			"costToComplete": "222.16",
			"studentLed": false,
			"numStudents": "4",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "300.36",
			"freeShipping": "false",
			"teacherId": "5930092",
			"teacherName": "Mrs. Minick-Gude",
			"gradeLevel": {
				"id": "4",
				"name": "Grades 9-12"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Grandwood Education Center",
			"schoolUrl": "https://www.donorschoose.org/school/grandwood-education-center/107941/",
			"city": "Woodward",
			"zip": "50276-7509",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.882449015975000",
			"longitude": "-93.923061937093735",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			},
			"resource": {
				"id": "13",
				"name": "Reading Nooks, Desks &amp; Storage"
			},
			"expirationDate": "2019-04-20",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3772121",
			"proposalURL": "https://www.donorschoose.org/project/lets-get-physical-for-our-health/3772121/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3772121&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u6065999_sm.jpg?timestamp=1542661244160",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u6065999_retina.jpg?timestamp=1542661244160",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u6065999_thmb.jpg?timestamp=1542661244160",
			"title": "Let&#039;s Get Physical for Our Health",
			"shortDescription": "I am a school nurse working in a special needs school where the focus is on functional learning. I care for students who have a variety of intellectual, physical, health and sensory impairments....",
			"fulfillmentTrailer": "Help me give my students new sports equipment to improve coordination, self-esteem and ability to make healthy choices.",
			"snippets": [],
			"percentFunded": "15",
			"numDonors": "5",
			"costToComplete": "763.67",
			"studentLed": false,
			"numStudents": "40",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "898.08",
			"freeShipping": "false",
			"teacherId": "6065999",
			"teacherName": "Mrs. Dunlavey",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Grandwood Education Center",
			"schoolUrl": "https://www.donorschoose.org/school/grandwood-education-center/107941/",
			"city": "Woodward",
			"zip": "50276-7509",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.882449015975000",
			"longitude": "-93.923061937093735",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "29",
				"name": "Gym &amp; Fitness",
				"groupId": "2"
			},
			"additionalSubjects": [{
				"id": "27",
				"name": "Health &amp; Wellness",
				"groupId": "2"
			}],
			"resource": {
				"id": "14",
				"name": "Sports &amp; Exercise Equipment"
			},
			"expirationDate": "2019-03-16",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3862590",
			"proposalURL": "https://www.donorschoose.org/project/all-learning-styles-on-deck/3862590/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3862590&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5930092_sm.jpg?timestamp=1543438156700",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5930092_retina.jpg?timestamp=1543438156700",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5930092_thmb.jpg?timestamp=1543438156700",
			"title": "All Learning Styles on Deck",
			"shortDescription": "There is a lot of enjoyment that comes from working in special education. I work in a special needs classroom with students that have intellectual impairments and require some kind of continual...",
			"fulfillmentTrailer": "Help me give my students the interactive experience by enhancing engagement through technology in the classroom.",
			"snippets": [],
			"percentFunded": "7",
			"numDonors": "2",
			"costToComplete": "351.92",
			"studentLed": false,
			"numStudents": "4",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"teacherFFPromoCodeFund": {
				"eligible": "true",
				"deadline": "January 16",
				"code": "LIFTOFF",
				"matchingKey": "LIFTOFF19",
				"ownerRegion": "",
				"name": "New Teacher Fund",
				"donorSalutation": "New Teacher Fund",
				"type": "PROMO",
				"logoURL": "liftoff.gif",
				"description": ""
			},
			"totalPrice": "376.92",
			"freeShipping": "true",
			"teacherId": "5930092",
			"teacherName": "Mrs. Minick-Gude",
			"gradeLevel": {
				"id": "4",
				"name": "Grades 9-12"
			},
			"povertyLevel": "More than half of students from low‑income households",
			"povertyType": {
				"label": "MODERATEHIGH",
				"name": "More than half of students from low‑income households",
				"range": "51-75%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Grandwood Education Center",
			"schoolUrl": "https://www.donorschoose.org/school/grandwood-education-center/107941/",
			"city": "Woodward",
			"zip": "50276-7509",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.882449015975000",
			"longitude": "-93.923061937093735",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			},
			"resource": {
				"id": "8",
				"name": "Instructional Technology"
			},
			"expirationDate": "2019-05-07",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3791743",
			"proposalURL": "https://www.donorschoose.org/project/taking-care-of-the-band/3791743/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3791743&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u5263652_sm.jpg?timestamp=1522262809933",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u5263652_retina.jpg?timestamp=1522262809933",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u5263652_thmb.jpg?timestamp=1522262809933",
			"title": "Taking Care of the Band",
			"shortDescription": "My school district is a small, rural community in the heart of Iowa. We have some of the nicest, most thoughtful students in the state. The students participate in sports, clubs, Church groups,...",
			"fulfillmentTrailer": "Help me give my students tools to care for, and repair, their instruments.",
			"snippets": [],
			"percentFunded": "20",
			"numDonors": "5",
			"costToComplete": "807.11",
			"studentLed": false,
			"numStudents": "70",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "1003.84",
			"freeShipping": "true",
			"teacherId": "5263652",
			"teacherName": "Ms. Pfeiler",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 2,
					"name": "Adult Education"
				},
				{
					"id": 6,
					"name": "Vocational Education"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Collins-Maxwell Middle High School",
			"schoolUrl": "https://www.donorschoose.org/school/collins-maxwell-middle-high-school/52106/",
			"city": "Maxwell",
			"zip": "50161-2000",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.890385000000000",
			"longitude": "-93.396545000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "12",
				"name": "Music",
				"groupId": "1"
			},
			"additionalSubjects": [{
				"id": "1",
				"name": "Performing Arts",
				"groupId": "1"
			}],
			"resource": {
				"id": "11",
				"name": "Lab Equipment"
			},
			"expirationDate": "2019-03-26",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3774365",
			"proposalURL": "https://www.donorschoose.org/project/flexible-workspaces/3774365/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3774365&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u4148351_sm.jpg?timestamp=1510950633104",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u4148351_retina.jpg?timestamp=1510950633104",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u4148351_thmb.jpg?timestamp=1510950633104",
			"title": "Flexible Workspaces",
			"shortDescription": "This is a dynamic group of kids who are striving to be successful students and citizens to the best of their abilities. Our classroom hosts a diverse group of low socioeconomic students who often...",
			"fulfillmentTrailer": "Help me give my students a comfortable and alternative work space to produce adequate academic data.",
			"snippets": [],
			"percentFunded": "38",
			"numDonors": "4",
			"costToComplete": "361.33",
			"studentLed": false,
			"numStudents": "10",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "583.33",
			"freeShipping": "true",
			"teacherId": "4148351",
			"teacherName": "Mrs. Pardun",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "Half of students from low‑income households",
			"povertyType": {
				"label": "MODERATE",
				"name": "Half of students from low‑income households",
				"range": "45-50%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [],
			"schoolName": "Kate Mitchell Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/kate-mitchell-elementary-school/52096/",
			"city": "Ames",
			"zip": "50010-8498",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.990802000000000",
			"longitude": "-93.600326000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "26",
				"name": "Character Education",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "13",
				"name": "Reading Nooks, Desks &amp; Storage"
			},
			"expirationDate": "2019-03-16",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3625996",
			"proposalURL": "https://www.donorschoose.org/project/21st-century-coders-in-2nd-grade/3625996/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3625996&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u2967311_sm.jpg?timestamp=1483385173807",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u2967311_retina.jpg?timestamp=1483385173807",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u2967311_thmb.jpg?timestamp=1483385173807",
			"title": "21st Century Coders in 2nd Grade",
			"shortDescription": "I teach in a small school district that is currently experiencing a lot of growth. Last year we added 10 additional classrooms to our elementary. <br /><br />My classroom is full of seven and eight year...",
			"fulfillmentTrailer": "Help me give my students opportunity to expand their STEM and coding exposure by using the Osmo packages with the software loaded on the Apple iPads.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "1197.12",
			"studentLed": false,
			"numStudents": "30",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "1197.12",
			"freeShipping": "true",
			"teacherId": "2967311",
			"teacherName": "Ms. Wild",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Pleasantville Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/pleasantville-elementary-school/51735/",
			"city": "Pleasantville",
			"zip": "50225",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.388276880441100",
			"longitude": "-93.274118942500700",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "6",
				"name": "Applied Sciences",
				"groupId": "4"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "7",
				"name": "Computers &amp; Tablets"
			},
			"expirationDate": "2019-01-17",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3831931",
			"proposalURL": "https://www.donorschoose.org/project/learning-with-legos/3831931/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3831931&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"retinaImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"thumbImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"title": "Learning With Legos",
			"shortDescription": "My students are creative, thoughtful and full of questions! They absolutely love hands-on, active, engaging projects and challenges that allow them to think outside the box to find solutions! They...",
			"fulfillmentTrailer": "Help me give my students the opportunity to work together, build and create.  The Mindstorms Core set will provide my students with a great start to STEM activities.",
			"snippets": [],
			"percentFunded": "25",
			"numDonors": "3",
			"costToComplete": "485.99",
			"studentLed": false,
			"numStudents": "24",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "644.81",
			"freeShipping": "false",
			"teacherId": "6144988",
			"teacherName": "Mr. E",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Pleasantville Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/pleasantville-elementary-school/51735/",
			"city": "Pleasantville",
			"zip": "50225",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.388276880441100",
			"longitude": "-93.274118942500700",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "6",
				"name": "Applied Sciences",
				"groupId": "4"
			},
			"resource": {
				"id": "15",
				"name": "Educational Kits &amp; Games"
			},
			"expirationDate": "2019-04-13",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3849982",
			"proposalURL": "https://www.donorschoose.org/project/tinker-time-in-preschool/3849982/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3849982&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u2956334_sm.jpg?timestamp=1434043588128",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u2956334_retina.jpg?timestamp=1434043588128",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u2956334_thmb.jpg?timestamp=1434043588128",
			"title": "Tinker Time in Preschool",
			"shortDescription": "My students are four-year-old children who enter the classroom each school day full of wonder, excitement, and curiosity! They come from a variety of backgrounds and experiences, but they have in...",
			"fulfillmentTrailer": "Help my students explore the world around them with manipulative like the Ramptastic learning kit & Clip and Create Builders.  Wheels, Farm/ Winter animals are a few of the projects of studies we investigate in preschool.",
			"snippets": [],
			"percentFunded": "37",
			"numDonors": "4",
			"costToComplete": "206.91",
			"studentLed": false,
			"numStudents": "20",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "326.91",
			"freeShipping": "true",
			"teacherId": "2956334",
			"teacherName": "Mrs. Wicks",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Pleasantville Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/pleasantville-elementary-school/51735/",
			"city": "Pleasantville",
			"zip": "50225",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.388276880441100",
			"longitude": "-93.274118942500700",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "6",
				"name": "Applied Sciences",
				"groupId": "4"
			},
			"additionalSubjects": [{
				"id": "7",
				"name": "Environmental Science",
				"groupId": "4"
			}],
			"resource": {
				"id": "9",
				"name": "Books"
			},
			"expirationDate": "2019-04-26",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3632848",
			"proposalURL": "https://www.donorschoose.org/project/fall-into-fourth-grade-coding/3632848/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3632848&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"retinaImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"thumbImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"title": "Fall into Fourth Grade Coding",
			"shortDescription": "Do you remember being curious about how things worked as a child? My 4th graders love to experiment by trial and error. They like to build things, and if they don't work, they problem solve until...",
			"fulfillmentTrailer": "Help me give my students opportunity to expand their STEM and coding exposure by using the Botley Coding Robots with software loaded onto the iPads.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "1185.65",
			"studentLed": false,
			"numStudents": "21",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "1185.65",
			"freeShipping": "true",
			"teacherId": "5886332",
			"teacherName": "Mrs. Busick",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Pleasantville Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/pleasantville-elementary-school/51735/",
			"city": "Pleasantville",
			"zip": "50225",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.388276880441100",
			"longitude": "-93.274118942500700",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "6",
				"name": "Applied Sciences",
				"groupId": "4"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "7",
				"name": "Computers &amp; Tablets"
			},
			"expirationDate": "2019-01-19",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3756543",
			"proposalURL": "https://www.donorschoose.org/project/smarter-math/3756543/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3756543&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u4984145_sm.jpg?timestamp=1511297103043",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u4984145_retina.jpg?timestamp=1511297103043",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u4984145_thmb.jpg?timestamp=1511297103043",
			"title": "Smarter Math!",
			"shortDescription": "We have some very talented students who need to be pushed in math every day. At the same time, we have students that require some additional assistance in order to acquire the skills necessary for...",
			"fulfillmentTrailer": "Help me give my students an interactive smart board in order to utilize the technological capabilities in math class.  Currently, we do not have access to any smart boards in our junior high school.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "1564.93",
			"studentLed": false,
			"numStudents": "150",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "1564.93",
			"freeShipping": "true",
			"teacherId": "4984145",
			"teacherName": "Mrs. Roff",
			"gradeLevel": {
				"id": "3",
				"name": "Grades 6-8"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Pleasantville Middle School",
			"schoolUrl": "https://www.donorschoose.org/school/pleasantvill-middle-school/101710/",
			"city": "Pleasantville",
			"zip": "50225-7664",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.388169000000000",
			"longitude": "-93.271943000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			},
			"resource": {
				"id": "8",
				"name": "Instructional Technology"
			},
			"expirationDate": "2019-03-09",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3830063",
			"proposalURL": "https://www.donorschoose.org/project/performance-trip-to-disney-world/3830063/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3830063&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"retinaImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"thumbImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"title": "Performance Trip to Disney World",
			"shortDescription": "Traveling gives students the opportunity to experience performing at a higher level and broadens their minds with new experiences. We are seeking funds to help supplement our lower income and...",
			"fulfillmentTrailer": "Help me give my students the opportunity to perform, experience and apply their musical knowledge by supplementing their trip to Disney World.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "1468.24",
			"studentLed": false,
			"numStudents": "45",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"teacherFFPromoCodeFund": {
				"eligible": "true",
				"deadline": "January 11",
				"code": "LIFTOFF",
				"matchingKey": "LIFTOFF19",
				"ownerRegion": "",
				"name": "New Teacher Fund",
				"donorSalutation": "New Teacher Fund",
				"type": "PROMO",
				"logoURL": "liftoff.gif",
				"description": ""
			},
			"totalPrice": "1468.24",
			"freeShipping": "true",
			"teacherId": "6142896",
			"teacherName": "Ms. Bekersky",
			"gradeLevel": {
				"id": "4",
				"name": "Grades 9-12"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
				"id": 12,
				"name": "Horace Mann (partner)"
			}],
			"schoolName": "Pleasantville High School",
			"schoolUrl": "https://www.donorschoose.org/school/pleasantville-high-school/51736/",
			"city": "Pleasantville",
			"zip": "50225-7664",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.388169000000000",
			"longitude": "-93.271943000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "1",
				"name": "Performing Arts",
				"groupId": "1"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "4",
				"name": "Trips"
			},
			"expirationDate": "2019-04-26",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3832779",
			"proposalURL": "https://www.donorschoose.org/project/kindle-a-love-of-reading/3832779/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3832779&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u4520004_sm.jpg?timestamp=1498856731930",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u4520004_retina.jpg?timestamp=1498856731930",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u4520004_thmb.jpg?timestamp=1498856731930",
			"title": "&#034;Kindle&#034; a Love of Reading!",
			"shortDescription": "My students are 11-12-year-olds. They work very hard to be where they are today. Many of them have difficult home lives or a not so great past. My students have to juggle home language with school...",
			"fulfillmentTrailer": "Help me give my students Kindles to increase access to books and push their love of reading further.",
			"snippets": [],
			"percentFunded": "9",
			"numDonors": "1",
			"costToComplete": "506.08",
			"studentLed": false,
			"numStudents": "43",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "556.08",
			"freeShipping": "true",
			"teacherId": "4520004",
			"teacherName": "Mrs. Henry",
			"gradeLevel": {
				"id": "2",
				"name": "Grades 3-5"
			},
			"povertyLevel": "More than three‑quarters of students from low‑income households",
			"povertyType": {
				"label": "HIGH",
				"name": "More than three‑quarters of students from low‑income households",
				"range": "76-89%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Perry Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/perry-elementary-school/51294/",
			"city": "Perry",
			"zip": "50220-2560",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.843667000000000",
			"longitude": "-94.096707000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "25",
				"name": "ESL",
				"groupId": "6"
			},
			"additionalSubjects": [{
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			}],
			"resource": {
				"id": "7",
				"name": "Computers &amp; Tablets"
			},
			"expirationDate": "2019-04-13",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3769488",
			"proposalURL": "https://www.donorschoose.org/project/help-with-headphones/3769488/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3769488&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"retinaImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"thumbImageURL": "https://cdn.donorschoose.net/images/classroom/[email protected]",
			"title": "Help With Headphones!",
			"shortDescription": "I don't know where to start. My students are fun-loving, enthusiastic, kind-hearted, and bright kiddos that love everything. They come into the classroom with a smile on their face and ready for a...",
			"fulfillmentTrailer": "Help me give my students headphones so that they have the ability to work independently on their computers during literacy stations!",
			"snippets": [],
			"percentFunded": "25",
			"numDonors": "3",
			"costToComplete": "273.89",
			"studentLed": false,
			"numStudents": "25",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "363.89",
			"freeShipping": "false",
			"teacherId": "4306826",
			"teacherName": "Ms. Stevenson",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "",
			"povertyType": {
				"label": "LOW",
				"name": "",
				"range": "0%-30%",
				"showPovertyLevel": "false"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 12,
					"name": "Horace Mann (partner)"
				},
				{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "Winterset Elementary School",
			"schoolUrl": "https://www.donorschoose.org/school/winterset-elementary-school/51713/",
			"city": "Winterset",
			"zip": "50273-2100",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "41.331518000000000",
			"longitude": "-94.015952000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "18",
				"name": "Early Development",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "10",
				"name": "Literacy",
				"groupId": "6"
			}],
			"resource": {
				"id": "8",
				"name": "Instructional Technology"
			},
			"expirationDate": "2019-03-15",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3838049",
			"proposalURL": "https://www.donorschoose.org/project/a-quiet-place-to-think/3838049/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3838049&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u4049165_sm.jpg?timestamp=1480188925357",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u4049165_retina.jpg?timestamp=1480188925357",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u4049165_thmb.jpg?timestamp=1480188925357",
			"title": "A Quiet Place to Think",
			"shortDescription": "We are a small school district in between two larger city school districts. Our entire district is housed in one small preschool through sixth grade building. After 6th grade, students choose...",
			"fulfillmentTrailer": "Help me give my students a quiet space to calm their bodies. The Quiet Time Privacy Cube is a great way for students to take a break from the group, while still being seen by the teachers.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "448.27",
			"studentLed": false,
			"numStudents": "100",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"totalPrice": "448.27",
			"freeShipping": "true",
			"teacherId": "4049165",
			"teacherName": "Mrs. McClain",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "United Community School",
			"schoolUrl": "https://www.donorschoose.org/school/united-community-school/51091/",
			"city": "Boone",
			"zip": "50036-7484",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "42.025245000000000",
			"longitude": "-93.776564000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "18",
				"name": "Early Development",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "23",
				"name": "Special Needs",
				"groupId": "7"
			}],
			"resource": {
				"id": "9",
				"name": "Books"
			},
			"expirationDate": "2019-04-30",
			"fundingStatus": "needs funding"
		},
		{
			"id": "3858286",
			"proposalURL": "https://www.donorschoose.org/project/putting-steam-in-preschool/3858286/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
			"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=3858286&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
			"imageURL": "https://storage.donorschoose.net/dc_prod/images/user/small/u6177334_sm.jpg?timestamp=1546490069358",
			"retinaImageURL": "https://storage.donorschoose.net/dc_prod/images/user/retina/u6177334_retina.jpg?timestamp=1546490069358",
			"thumbImageURL": "https://storage.donorschoose.net/dc_prod/images/user/thumbnail/u6177334_thmb.jpg?timestamp=1546490069358",
			"title": "Putting STEAM in Preschool",
			"shortDescription": "My class is filled with energetic and excited 3 and 4 year olds eager to learn about the world around them in their very first year at school. They are so curious and excited about their learning...",
			"fulfillmentTrailer": "Help me give my students a color-changing light table and accessories to enhance their engagement and learning in our STEM/discovery area of our classroom.",
			"snippets": [],
			"percentFunded": "0",
			"numDonors": "0",
			"costToComplete": "694.67",
			"studentLed": false,
			"numStudents": "16",
			"professionalDevelopment": false,
			"matchingFund": {
				"matchingKey": "",
				"ownerRegion": "",
				"name": "",
				"donorSalutation": "",
				"type": "",
				"matchImpactMultiple": "",
				"multipleForDisplay": "",
				"logoURL": "",
				"faqURL": "",
				"amount": "0.00",
				"description": ""
			},
			"teacherFFPromoCodeFund": {
				"eligible": "true",
				"deadline": "January 10",
				"code": "LIFTOFF",
				"matchingKey": "LIFTOFF19",
				"ownerRegion": "",
				"name": "New Teacher Fund",
				"donorSalutation": "New Teacher Fund",
				"type": "PROMO",
				"logoURL": "liftoff.gif",
				"description": ""
			},
			"totalPrice": "694.67",
			"freeShipping": "false",
			"teacherId": "6177334",
			"teacherName": "Ms. Reinken",
			"gradeLevel": {
				"id": "1",
				"name": "Grades PreK-2"
			},
			"povertyLevel": "More than a third of students from low‑income households",
			"povertyType": {
				"label": "MODERATELOW",
				"name": "More than a third of students from low‑income households",
				"range": "30-44%",
				"showPovertyLevel": "true"
			},
			"teacherTypes": [],
			"schoolTypes": [{
					"id": 13,
					"name": "CenturyLink"
				},
				{
					"id": 3,
					"name": "Special Education"
				}
			],
			"schoolName": "United Community School",
			"schoolUrl": "https://www.donorschoose.org/school/united-community-school/51091/",
			"city": "Boone",
			"zip": "50036-7484",
			"state": "IA",
			"stateFullName": "Iowa",
			"latitude": "42.025245000000000",
			"longitude": "-93.776564000000000",
			"zone": {
				"id": "221",
				"name": "Iowa"
			},
			"subject": {
				"id": "18",
				"name": "Early Development",
				"groupId": "5"
			},
			"additionalSubjects": [{
				"id": "8",
				"name": "Mathematics",
				"groupId": "4"
			}],
			"resource": {
				"id": "13",
				"name": "Reading Nooks, Desks &amp; Storage"
			},
			"expirationDate": "2019-05-02",
			"fundingStatus": "needs funding"
		}
	]
}

运行结果如图:

在这里插入图片描述

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/WuLex/article/details/86189067