Atlassian · Schema

CustomFieldContextDefaultValueDateTime

The default value for a date time custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
dateTime string The default date-time in ISO format. Ignored if `useCurrent` is true.
type string
useCurrent boolean Whether to use the current date.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvaluedatetime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueDateTime",
  "title": "CustomFieldContextDefaultValueDateTime",
  "description": "The default value for a date time custom field.",
  "properties": {
    "dateTime": {
      "description": "The default date-time in ISO format. Ignored if `useCurrent` is true.",
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "useCurrent": {
      "default": false,
      "description": "Whether to use the current date.",
      "type": "boolean"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}