{ "$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" }