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

# Overview

> Property types for text and string-shaped values.

## Text properties

Text properties hold string-shaped values. The plain
[Text](/data/properties/text/text) type is the default, but Custral ships
several specialized text types that add validation and unlock behavior, an
[Email](/data/properties/text/email) property is what lets inbound mail link to
the right record, and a [Phone](/data/properties/text/phone) property
normalizes numbers to E.164 so SMS and voice features can dial them.

Pick the most specific type that fits your data. The stricter the type, the
more Custral can do with it: validation on input, format-aware filtering, and
clean values for automations and AI.

<CardGroup cols={2}>
  <Card title="Text" icon="font" href="/data/properties/text/text">
    Free-form short text.
  </Card>

  <Card title="Long Text" icon="align-left" href="/data/properties/text/long-text">
    Multi-line, paragraph-length text.
  </Card>

  <Card title="Email" icon="envelope" href="/data/properties/text/email">
    An RFC-compliant email address.
  </Card>

  <Card title="Phone" icon="phone" href="/data/properties/text/phone">
    An E.164 phone number.
  </Card>

  <Card title="Website / URL" icon="globe" href="/data/properties/text/website">
    A URL property with light validation.
  </Card>

  <Card title="Address" icon="location-dot" href="/data/properties/text/address">
    A structured postal address.
  </Card>

  <Card title="ID" icon="barcode" href="/data/properties/text/id">
    A short text value enforced to be unique within the object.
  </Card>
</CardGroup>


## Related topics

- [Overview](/data/properties/common/overview.md)
