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