Field: {
    format?: string;
    name: string;
    title?: string;
    type?: string;
}

An object which describes a column of data in the model.

Notes

This is based on the JSON Table Schema specification: https://specs.frictionlessdata.io/table-schema/

Type declaration

  • Optional Readonly format?: string

    The format of the data in the column.

  • Readonly name: string

    The name of the column.

    This is used as the key to extract a value from a data record. It is also used as the column header label, unless the title property is provided.

  • Optional Readonly title?: string

    The human readable name for the column.

    This is used as the label for the column header.

  • Optional Readonly type?: string

    The type of data held in the column.