{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UrlCustomField", "title": "UrlCustomField", "type": "object", "properties": { "name": { "description": "The human-readable name of the URL link.", "type": "string", "example": "On-Call Dashboard" }, "link": { "description": "The href value of the URL link.", "type": "string", "format": "uri-reference", "example": "https://my-dashboard-svc.io/dashboards/1" } }, "nullable": true, "required": [ "name", "link" ] }