Default value for a float (number) custom field.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomFieldContextDefaultValueFloat", "title": "CustomFieldContextDefaultValueFloat", "description": "Default value for a float (number) custom field.", "properties": { "number": { "description": "The default floating-point number.", "format": "double", "type": "number" }, "type": { "type": "string" } }, "required": [ "number", "type" ], "type": "object" }