Learn how to build a schema for your unstructured data
Fields
.
A field has the following components:
name
: The name of the fieldtype
: The type of the fielddescription
: A description of the fieldstring
: Text data like names, addresses, and emailsinteger
: Whole numbers like page count or household sizenumber
: Decimal numbers like prices or measurementsboolean
: True or Falseenum
: List of predefined values like colors or sizesarray
: List of items of the same typeobject
: Groups related data togetherfull_name
over name
snake_case
.string
type:
required
property to specify which fields are needed so that data is extracted correctly.Person
. Take note of the nested address
object.
alex@atlos.dev