Merge · Schema

UrlRequest

# The Url Object ### Description The `Url` object is used to represent hyperlinks associated with the parent model. ### Usage Example Fetch from the `GET Candidate` endpoint and view their website urls.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
value stringnull The site's url.
url_type object The type of site.
integration_params objectnull
linked_account_params objectnull
View JSON Schema on GitHub

JSON Schema

merge-urlrequest-schema.json Raw ↑
{
  "$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."
}