Atlassian · Schema

CustomFieldContextDefaultValueForgeDateTimeField

The default value for a Forge date time custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contextId string The ID of the context.
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-customfieldcontextdefaultvalueforgedatetimefield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueForgeDateTimeField",
  "title": "CustomFieldContextDefaultValueForgeDateTimeField",
  "description": "The default value for a Forge date time custom field.",
  "properties": {
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "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": [
    "contextId",
    "type"
  ],
  "type": "object"
}