{{ date }}

date Properties

Field used to store a date. All dates are stored in UTC time.

Field Type Description
object_type string Will always be "date".
is_valid True|False True if the value is not empty.
value string  Unformatted date string (in UTC).
date time An object containing more detailed information about the selected date.
output string The value formatted using the "Short date pattern" (MM/dd/yyyy).
output_in_list html Same as output.
field_id string The identifier for this field.
default_value string The default value for this field if no value is specified.

Examples

Entity Date Opened with Date Filter

Copy
{% if entity.date_opened.is_valid %}

Date Opened: {{ entity.date_opened | date: "MMMM dd, yyyy" }}

{% endif %}