{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WebhookLinks", "title": "WebhookLinks", "properties": { "company": { "description": "The company account that the webhook is configured for. Only present for company-level webhooks.", "$ref": "#/components/schemas/LinksElement" }, "generateHmac": { "description": "Generate an HMAC key.", "$ref": "#/components/schemas/LinksElement" }, "merchant": { "description": "The merchant account that the webhook is configured for. Only present for merchant-level webhooks.", "$ref": "#/components/schemas/LinksElement" }, "self": { "description": "Link to the resource itself.", "$ref": "#/components/schemas/LinksElement" }, "testWebhook": { "description": "Test the webhook setup.", "$ref": "#/components/schemas/LinksElement" } }, "required": [ "self", "testWebhook", "generateHmac" ], "type": "object" }