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

Step to follow:
1. Analyze my Skills 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:
- Specificity: Prioritize relevance to the specific job over general achievements.
- Proofreading: Ensure impeccable spelling and grammar.

Consider following Skills Details delimited by <SKILLS></SKILLS> tag.
<SKILLS>
<SECTION_DATA>
</SKILLS>

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:
"skills": [
    {
      "name": "Programming Languages",
      "skills": ["Python", "JavaScript", so on ...]
    },
    {
      "name": "Database",
      "skills": [ "SQL", "MongoDB", and so on ... ]
    },
    and so on ...
  ],