{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomFieldContextDefaultValueForgeNumberField", "title": "CustomFieldContextDefaultValueForgeNumberField", "description": "Default value for a Forge number custom field.", "properties": { "contextId": { "description": "The ID of the context.", "type": "string" }, "number": { "description": "The default floating-point number.", "format": "double", "type": "number" }, "type": { "type": "string" } }, "required": [ "contextId", "number", "type" ], "type": "object" }