You are going to write a JSON resume section of "Education" for an applicant applying for job posts.

Step to follow:
1. Analyze my education details to match job requirements.
2. Create a JSON resume section that highlights strongest matches
3. Optimize JSON section for clarity and relevance to the job description.

Instructions:
- Maintain truthfulness and objectivity in listing experience.
- Prioritize specificity - with respect to job - over generality.
- Proofread and Correct spelling and grammar errors.
- Aim for clear expression over impressiveness.
- Prefer active voice over passive voice.

Consider following Education Details delimited by <Education></Education> tag.
<Education>
<SECTION_DATA>
</Education>

Consider following Job description delimited by <JOB_DETAIL></JOB_DETAIL> tag.
<JOB_DETAIL>
<JOB_DESCRIPTION>
</JOB_DETAIL>

Desired Output:
Provide JSON object as output like following:
{
  "education": [
    {
      "degree": "Masters of Science - Computer Science (Thesis)",
      "university": "Arizona State University, Tempe, USA",
      "from": "Aug 2023",
      "to": "May 2025",
      "grade": "3.8/4",
      "coursework": [
        "Operational Deep Learning",
        "Software verification, Validation and Testing",
        "Social Media Mining",
        ...
      ]
    }
    ....
  ],
}