# Run2 PDF Field Mapping

> Techniques for mapping case descriptions to PDF form fields.

- Skill: `thomasmoreai/run2-pdf-field-mapping` (Agent Skill)
- Install (CLI): `npx skillmds@latest add thomasmoreai/run2-pdf-field-mapping`
- Raw SKILL.md: https://api.skillmd.com/api/skills/thomasmoreai/run2-pdf-field-mapping/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- License: MIT
- Author: ThomasMoreAI (https://skillmd.com/u/thomasmoreai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/thomasmoreai/run2-pdf-field-mapping

---


# PDF Field Mapping

When mapping case data to PDF fields:

1. **Analyze Field IDs**: Look for keywords in the `field_id` (e.g., `PlaintiffName`, `DefendantAddress`, `ClaimAmount`).
2. **Use Bounding Boxes**: If IDs are cryptic, use the `rect` (bounding box) and the page number to identify the field's position on the form.
3. **Handle Checkboxes**: Identify the `checked_value` for "Yes" or "No" options. Usually, `/1` is Yes and `/2` or `/Off` is No, but verify in `field_info.json`.
4. **Consistency Check**: Ensure that data like names and addresses are consistent across different sections of the form (e.g., caption vs. detailed info).

