The default value for a URL custom field.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomFieldContextDefaultValueURL", "title": "CustomFieldContextDefaultValueURL", "description": "The default value for a URL custom field.", "properties": { "contextId": { "description": "The ID of the context.", "type": "string" }, "type": { "type": "string" }, "url": { "description": "The default URL.", "type": "string" } }, "required": [ "contextId", "type", "url" ], "type": "object" }