Structured data extraction to JSON
Extract structured data from the text below and return it as JSON.
Text to process:
"""
[Paste the input text here — an invoice, email, form, article, etc.]
"""
Return a JSON object matching this exact schema:
{
"field_one": string, // [describe what this field contains]
"field_two": string | null, // [describe; null if not found]
"field_three": number | null, // [describe; null if not found]
"items": [
{
"item_field_a": string,
"item_field_b": number | null
}
]
}
Rules:
- Use null (not "N/A", not empty string) for any field not found in the text
- Dates in ISO 8601 format: YYYY-MM-DD
- Numbers as numeric types, not strings
- Do not add fields not in the schema
- Return only the JSON object — no explanation, no markdown code fence, no other text
Example output (for reference only — use values from the actual text):
{
"field_one": "Example value",
"field_two": null,
"field_three": 42,
"items": [
{ "item_field_a": "Item A", "item_field_b": 19.99 }
]
}Opens on home with the prompt prefilled.
Open in Promptea