> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anyformat.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Fields

> What a field is and the three properties every field has.

A **field** represents one piece of information inside a [schema](/concepts/schemas).

Examples:

* Invoice number
* Issue date
* Total amount
* Vendor name

Fields are the most important part of data quality. Clear fields lead to better results and less review.

<img src="https://mintcdn.com/anyformat/pilIFdJ4MJRok4mo/images/fields.webp?fit=max&auto=format&n=pilIFdJ4MJRok4mo&q=85&s=f826de2627851bb0b4c864b3f5ffaf5e" alt="Fields panel" width="2400" height="1200" data-path="images/fields.webp" />

***

## The three field properties

Every field has at least three properties.

<AccordionGroup>
  <Accordion title="Field name">
    A human-readable label that still makes sense outside anyformat.

    Examples: `invoice_number`, `issue_date`, `total_amount`.

    Use snake\_case so the name is safe to use as a JSON key or column header.
  </Accordion>

  <Accordion title="Field type">
    Tells anyformat what kind of value to expect (text, date, number, etc.).

    The type improves consistency, validation, and output quality. See [Field types](/concepts/field-types) for the full list.
  </Accordion>

  <Accordion title="Instructions">
    Plain-English guidance for how to extract the value.

    Example: "Extract the final total including taxes. Ignore subtotals."

    See [Instructions](/concepts/instructions) for how to write good ones.
  </Accordion>
</AccordionGroup>

<img src="https://mintcdn.com/anyformat/pilIFdJ4MJRok4mo/images/field-properties.webp?fit=max&auto=format&n=pilIFdJ4MJRok4mo&q=85&s=a61384b974ab95156e2bb20adfb3af8a" alt="Field properties" width="2400" height="1200" data-path="images/field-properties.webp" />

***

## What's next?

<CardGroup cols={2}>
  <Card title="Field types" icon="diagram-project" href="/concepts/field-types">
    The full list of types — text, date, number, object, enum, multi-select
  </Card>

  <Card title="Instructions" icon="message-lines" href="/concepts/instructions">
    Write effective extraction instructions
  </Card>
</CardGroup>
