{
    "type": "date",
    "name": "start_date",
    "label": "Start date",
    "required": false, // optional
    "help": "help text shown in tooltip to creator while editing" // optional
  }
  {
    "settings": {
      "start_date": "2024-10-03T07:00:00.000Z"
      // ...additional plugin settings
    }
    // ...plugin-specific additional data
  }
The date picker allows creators to select specific dates for time-sensitive content such as event announcements, promotional campaigns, or content scheduling. All dates are standardized and returned in UTC ISO8601 format to ensure consistent handling across different time zones and applications. example date picker

Compatibility

Plugin typeAvailablityAdditional notes
Content blocks
Media source

Properties

type
string
required
date - the type of the component
name
string
required
A unique internal-only identifier that is posted to an app’s plugin server to share values inputted by the creator
label
string
required
Creator-facing identifier that is shown in the plugin environment
required
boolean
Determines whether the creator must select a date before proceeding
help
string
Brief creator-facing explanation that clarifies the component’s purpose and usage.
  {
    "type": "date",
    "name": "start_date",
    "label": "Start date",
    "required": false, // optional
    "help": "help text shown in tooltip to creator while editing" // optional
  }
  {
    "settings": {
      "start_date": "2024-10-03T07:00:00.000Z"
      // ...additional plugin settings
    }
    // ...plugin-specific additional data
  }