{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UrlRequest", "title": "UrlRequest", "type": "object", "properties": { "value": { "type": [ "string", "null" ], "format": "uri", "description": "The site's url." }, "url_type": { "oneOf": [ { "$ref": "#/components/schemas/UrlTypeEnum" }, { "type": "null" } ], "description": "The type of site." }, "integration_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } }, "linked_account_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } } }, "description": "# The Url Object\n### Description\nThe `Url` object is used to represent hyperlinks associated with the parent model.\n### Usage Example\nFetch from the `GET Candidate` endpoint and view their website urls." }