Codat · Schema

Weblink

Weblink associated with the company.

Unified_API

Properties

Name Type Description
type string The type of the weblink.
url string The full URL for the weblink.
View JSON Schema on GitHub

JSON Schema

codat-weblink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebLink",
  "title": "Weblink",
  "description": "Weblink associated with the company.",
  "type": "object",
  "properties": {
    "type": {
      "description": "The type of the weblink.",
      "type": "string",
      "enum": [
        "Website",
        "Social",
        "Unknown"
      ]
    },
    "url": {
      "description": "The full URL for the weblink.",
      "type": "string",
      "format": "url"
    }
  },
  "example": {
    "type": "Website",
    "url": "https://codat.io"
  }
}