{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomFieldContextDefaultValueDate",
"title": "CustomFieldContextDefaultValueDate",
"description": "The default value for a Date custom field.",
"properties": {
"date": {
"description": "The default date 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"
}