{
  "service": "klazify",
  "displayName": "Klazify",
  "categories": [
    "Data",
    "Marketing"
  ],
  "authTypes": [
    "api_key"
  ],
  "auth": [
    {
      "type": "api_key",
      "label": "API Key",
      "placeholder": "KLAZIFY_API_KEY",
      "description": "Klazify API key used with the Authorization: Bearer header. Create or copy it from the Klazify dashboard after starting a free trial: https://www.klazify.com/register"
    }
  ],
  "homepageUrl": "https://www.klazify.com",
  "actions": [
    {
      "id": "klazify.categorize_url",
      "service": "klazify",
      "name": "categorize_url",
      "description": "Categorize a website URL with Klazify and return the aggregated domain enrichment overview.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "The website URL or email address to enrich with Klazify."
          }
        },
        "additionalProperties": false,
        "description": "Input for the Klazify all-in-one categorization action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the Klazify request succeeded."
          },
          "domain": {
            "type": "object",
            "properties": {
              "domainUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The normalized domain URL returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "logoUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The hosted logo URL when available."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "categories": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The category path returned by Klazify."
                    },
                    "confidence": {
                      "anyOf": [
                        {
                          "type": "number",
                          "description": "The confidence score between 0 and 1 when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "iabCategory": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The IAB category identifier or label when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "raw": {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The raw category payload returned by Klazify."
                    }
                  },
                  "additionalProperties": false,
                  "description": "One Klazify category classification."
                },
                "description": "The categories returned by Klazify."
              },
              "socialMedia": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "facebookUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Facebook profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "twitterUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Twitter or X profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "instagramUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Instagram profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "youtubeUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The YouTube channel URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "linkedinUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The LinkedIn profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "githubUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The GitHub profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "pinterestUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Pinterest profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "mediumUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Medium profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "raw": {
                        "type": "object",
                        "properties": {},
                        "additionalProperties": true,
                        "description": "The raw social media payload returned by Klazify."
                      }
                    },
                    "additionalProperties": false,
                    "description": "Normalized social media links returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw domain payload returned by Klazify."
              }
            },
            "additionalProperties": false,
            "description": "Normalized Klazify domain overview data."
          },
          "company": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company name when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "city": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company city when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "stateCode": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company state or region code when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "countryCode": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company country code when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "employeesRange": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The employee range when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "revenue": {
                    "anyOf": [
                      {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "Revenue returned as a string."
                          },
                          {
                            "type": "number",
                            "description": "Revenue returned as a number."
                          }
                        ],
                        "description": "The company revenue value when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "raised": {
                    "anyOf": [
                      {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "Raised amount returned as a string."
                          },
                          {
                            "type": "number",
                            "description": "Raised amount returned as a number."
                          }
                        ],
                        "description": "The total funding amount when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "tags": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "One company tag."
                    },
                    "description": "The company tags returned by Klazify."
                  },
                  "tech": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "One technology."
                    },
                    "description": "The company technologies returned by Klazify."
                  },
                  "raw": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The raw company payload returned by Klazify."
                  }
                },
                "additionalProperties": false,
                "description": "Normalized company profile data returned by Klazify."
              },
              {
                "type": "null"
              }
            ]
          },
          "domainRegistrationData": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "domainAgeDate": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The registration date when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "domainAgeDaysAgo": {
                    "anyOf": [
                      {
                        "type": "integer",
                        "description": "The number of days since registration when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "domainExpirationDate": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The expiration date when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "domainExpirationDaysLeft": {
                    "anyOf": [
                      {
                        "type": "integer",
                        "description": "The number of days remaining until expiration when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "raw": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The raw domain registration payload returned by Klazify."
                  }
                },
                "additionalProperties": false,
                "description": "Normalized domain registration metadata returned by Klazify."
              },
              {
                "type": "null"
              }
            ]
          },
          "similarDomains": {
            "type": "array",
            "items": {
              "type": "string",
              "description": "One similar domain."
            },
            "description": "The similar domains returned by Klazify when available."
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw Klazify response payload."
          }
        },
        "additionalProperties": false,
        "required": [
          "success",
          "domain"
        ],
        "description": "Shared Klazify single-URL enrichment output."
      }
    },
    {
      "id": "klazify.get_company_data",
      "service": "klazify",
      "name": "get_company_data",
      "description": "Return company profile data for one website URL with Klazify.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "The website URL or email address to enrich with Klazify."
          },
          "refresh": {
            "type": "boolean",
            "description": "Whether Klazify should fetch fresh live data when supported."
          }
        },
        "additionalProperties": false,
        "required": [
          "url"
        ],
        "description": "Input for a Klazify single-URL enrichment action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the Klazify request succeeded."
          },
          "domain": {
            "type": "object",
            "properties": {
              "domainUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The normalized domain URL returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "logoUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The hosted logo URL when available."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "categories": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The category path returned by Klazify."
                    },
                    "confidence": {
                      "anyOf": [
                        {
                          "type": "number",
                          "description": "The confidence score between 0 and 1 when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "iabCategory": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The IAB category identifier or label when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "raw": {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The raw category payload returned by Klazify."
                    }
                  },
                  "additionalProperties": false,
                  "description": "One Klazify category classification."
                },
                "description": "The categories returned by Klazify."
              },
              "socialMedia": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "facebookUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Facebook profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "twitterUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Twitter or X profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "instagramUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Instagram profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "youtubeUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The YouTube channel URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "linkedinUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The LinkedIn profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "githubUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The GitHub profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "pinterestUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Pinterest profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "mediumUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Medium profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "raw": {
                        "type": "object",
                        "properties": {},
                        "additionalProperties": true,
                        "description": "The raw social media payload returned by Klazify."
                      }
                    },
                    "additionalProperties": false,
                    "description": "Normalized social media links returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw domain payload returned by Klazify."
              }
            },
            "additionalProperties": false,
            "description": "Normalized Klazify domain overview data."
          },
          "company": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company name when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "city": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company city when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "stateCode": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company state or region code when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "countryCode": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company country code when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "employeesRange": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The employee range when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "revenue": {
                    "anyOf": [
                      {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "Revenue returned as a string."
                          },
                          {
                            "type": "number",
                            "description": "Revenue returned as a number."
                          }
                        ],
                        "description": "The company revenue value when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "raised": {
                    "anyOf": [
                      {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "Raised amount returned as a string."
                          },
                          {
                            "type": "number",
                            "description": "Raised amount returned as a number."
                          }
                        ],
                        "description": "The total funding amount when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "tags": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "One company tag."
                    },
                    "description": "The company tags returned by Klazify."
                  },
                  "tech": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "One technology."
                    },
                    "description": "The company technologies returned by Klazify."
                  },
                  "raw": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The raw company payload returned by Klazify."
                  }
                },
                "additionalProperties": false,
                "description": "Normalized company profile data returned by Klazify."
              },
              {
                "type": "null"
              }
            ]
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw Klazify response payload."
          }
        },
        "additionalProperties": false,
        "description": "The company profile response returned by Klazify."
      }
    },
    {
      "id": "klazify.get_domain_expiration",
      "service": "klazify",
      "name": "get_domain_expiration",
      "description": "Return the registration and expiration details for one website URL with Klazify.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "The website URL or email address to enrich with Klazify."
          },
          "refresh": {
            "type": "boolean",
            "description": "Whether Klazify should fetch fresh live data when supported."
          }
        },
        "additionalProperties": false,
        "required": [
          "url"
        ],
        "description": "Input for a Klazify single-URL enrichment action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the Klazify request succeeded."
          },
          "domain": {
            "type": "object",
            "properties": {
              "domainUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The normalized domain URL returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "logoUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The hosted logo URL when available."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "categories": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The category path returned by Klazify."
                    },
                    "confidence": {
                      "anyOf": [
                        {
                          "type": "number",
                          "description": "The confidence score between 0 and 1 when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "iabCategory": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The IAB category identifier or label when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "raw": {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The raw category payload returned by Klazify."
                    }
                  },
                  "additionalProperties": false,
                  "description": "One Klazify category classification."
                },
                "description": "The categories returned by Klazify."
              },
              "socialMedia": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "facebookUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Facebook profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "twitterUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Twitter or X profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "instagramUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Instagram profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "youtubeUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The YouTube channel URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "linkedinUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The LinkedIn profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "githubUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The GitHub profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "pinterestUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Pinterest profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "mediumUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Medium profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "raw": {
                        "type": "object",
                        "properties": {},
                        "additionalProperties": true,
                        "description": "The raw social media payload returned by Klazify."
                      }
                    },
                    "additionalProperties": false,
                    "description": "Normalized social media links returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw domain payload returned by Klazify."
              }
            },
            "additionalProperties": false,
            "description": "Normalized Klazify domain overview data."
          },
          "domainRegistrationData": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "domainAgeDate": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The registration date when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "domainAgeDaysAgo": {
                    "anyOf": [
                      {
                        "type": "integer",
                        "description": "The number of days since registration when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "domainExpirationDate": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The expiration date when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "domainExpirationDaysLeft": {
                    "anyOf": [
                      {
                        "type": "integer",
                        "description": "The number of days remaining until expiration when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "raw": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The raw domain registration payload returned by Klazify."
                  }
                },
                "additionalProperties": false,
                "description": "Normalized domain registration metadata returned by Klazify."
              },
              {
                "type": "null"
              }
            ]
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw Klazify response payload."
          }
        },
        "additionalProperties": false,
        "description": "The domain expiration response returned by Klazify."
      }
    },
    {
      "id": "klazify.get_domain_logo",
      "service": "klazify",
      "name": "get_domain_logo",
      "description": "Return the hosted logo URL for one website URL with Klazify.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "The website URL or email address to enrich with Klazify."
          },
          "refresh": {
            "type": "boolean",
            "description": "Whether Klazify should fetch fresh live data when supported."
          }
        },
        "additionalProperties": false,
        "required": [
          "url"
        ],
        "description": "Input for a Klazify single-URL enrichment action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the Klazify request succeeded."
          },
          "domain": {
            "type": "object",
            "properties": {
              "domainUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The normalized domain URL returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "logoUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The hosted logo URL when available."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "categories": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The category path returned by Klazify."
                    },
                    "confidence": {
                      "anyOf": [
                        {
                          "type": "number",
                          "description": "The confidence score between 0 and 1 when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "iabCategory": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The IAB category identifier or label when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "raw": {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The raw category payload returned by Klazify."
                    }
                  },
                  "additionalProperties": false,
                  "description": "One Klazify category classification."
                },
                "description": "The categories returned by Klazify."
              },
              "socialMedia": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "facebookUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Facebook profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "twitterUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Twitter or X profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "instagramUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Instagram profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "youtubeUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The YouTube channel URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "linkedinUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The LinkedIn profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "githubUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The GitHub profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "pinterestUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Pinterest profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "mediumUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Medium profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "raw": {
                        "type": "object",
                        "properties": {},
                        "additionalProperties": true,
                        "description": "The raw social media payload returned by Klazify."
                      }
                    },
                    "additionalProperties": false,
                    "description": "Normalized social media links returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw domain payload returned by Klazify."
              }
            },
            "additionalProperties": false,
            "description": "Normalized Klazify domain overview data."
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw Klazify response payload."
          }
        },
        "additionalProperties": false,
        "description": "The logo response returned by Klazify."
      }
    },
    {
      "id": "klazify.get_iab_categories",
      "service": "klazify",
      "name": "get_iab_categories",
      "description": "Return the IAB category classification for one website URL with Klazify.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "The website URL or email address to enrich with Klazify."
          },
          "refresh": {
            "type": "boolean",
            "description": "Whether Klazify should fetch fresh live data when supported."
          }
        },
        "additionalProperties": false,
        "required": [
          "url"
        ],
        "description": "Input for a Klazify single-URL enrichment action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the Klazify request succeeded."
          },
          "domain": {
            "type": "object",
            "properties": {
              "domainUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The normalized domain URL returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "logoUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The hosted logo URL when available."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "categories": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The category path returned by Klazify."
                    },
                    "confidence": {
                      "anyOf": [
                        {
                          "type": "number",
                          "description": "The confidence score between 0 and 1 when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "iabCategory": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The IAB category identifier or label when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "raw": {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The raw category payload returned by Klazify."
                    }
                  },
                  "additionalProperties": false,
                  "description": "One Klazify category classification."
                },
                "description": "The categories returned by Klazify."
              },
              "socialMedia": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "facebookUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Facebook profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "twitterUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Twitter or X profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "instagramUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Instagram profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "youtubeUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The YouTube channel URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "linkedinUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The LinkedIn profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "githubUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The GitHub profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "pinterestUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Pinterest profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "mediumUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Medium profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "raw": {
                        "type": "object",
                        "properties": {},
                        "additionalProperties": true,
                        "description": "The raw social media payload returned by Klazify."
                      }
                    },
                    "additionalProperties": false,
                    "description": "Normalized social media links returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw domain payload returned by Klazify."
              }
            },
            "additionalProperties": false,
            "description": "Normalized Klazify domain overview data."
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw Klazify response payload."
          }
        },
        "additionalProperties": false,
        "description": "The IAB category response returned by Klazify."
      }
    },
    {
      "id": "klazify.get_similar_domains",
      "service": "klazify",
      "name": "get_similar_domains",
      "description": "Return similar or competitor domains for one website URL with Klazify.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "The website URL or email address to enrich with Klazify."
          },
          "refresh": {
            "type": "boolean",
            "description": "Whether Klazify should fetch fresh live data when supported."
          }
        },
        "additionalProperties": false,
        "required": [
          "url"
        ],
        "description": "Input for a Klazify single-URL enrichment action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "domain": {
            "type": "object",
            "properties": {
              "domainUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The normalized domain URL returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "logoUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The hosted logo URL when available."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "categories": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The category path returned by Klazify."
                    },
                    "confidence": {
                      "anyOf": [
                        {
                          "type": "number",
                          "description": "The confidence score between 0 and 1 when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "iabCategory": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The IAB category identifier or label when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "raw": {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The raw category payload returned by Klazify."
                    }
                  },
                  "additionalProperties": false,
                  "description": "One Klazify category classification."
                },
                "description": "The categories returned by Klazify."
              },
              "socialMedia": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "facebookUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Facebook profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "twitterUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Twitter or X profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "instagramUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Instagram profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "youtubeUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The YouTube channel URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "linkedinUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The LinkedIn profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "githubUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The GitHub profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "pinterestUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Pinterest profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "mediumUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Medium profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "raw": {
                        "type": "object",
                        "properties": {},
                        "additionalProperties": true,
                        "description": "The raw social media payload returned by Klazify."
                      }
                    },
                    "additionalProperties": false,
                    "description": "Normalized social media links returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw domain payload returned by Klazify."
              }
            },
            "additionalProperties": false,
            "description": "Normalized Klazify domain overview data."
          },
          "similarDomains": {
            "type": "array",
            "items": {
              "type": "string",
              "description": "One similar domain."
            },
            "description": "The similar domains returned by Klazify."
          },
          "apiUsage": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "remainingApiCalls": {
                    "anyOf": [
                      {
                        "type": "integer",
                        "description": "The remaining API calls when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "thisMonthApiCalls": {
                    "anyOf": [
                      {
                        "type": "integer",
                        "description": "The API calls used this month when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "raw": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The raw API usage payload returned by Klazify."
                  }
                },
                "additionalProperties": false,
                "description": "Klazify API usage counters when the endpoint returns them."
              },
              {
                "type": "null"
              }
            ]
          },
          "success": {
            "type": "boolean",
            "description": "Whether the Klazify request succeeded."
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw similar-domain response returned by Klazify."
          }
        },
        "additionalProperties": false,
        "required": [
          "domain",
          "similarDomains",
          "success"
        ],
        "description": "Normalized similar-domain response returned by Klazify."
      }
    },
    {
      "id": "klazify.get_social_media_links",
      "service": "klazify",
      "name": "get_social_media_links",
      "description": "Return the social media profile URLs for one website URL with Klazify.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "The website URL or email address to enrich with Klazify."
          },
          "refresh": {
            "type": "boolean",
            "description": "Whether Klazify should fetch fresh live data when supported."
          }
        },
        "additionalProperties": false,
        "required": [
          "url"
        ],
        "description": "Input for a Klazify single-URL enrichment action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the Klazify request succeeded."
          },
          "domain": {
            "type": "object",
            "properties": {
              "domainUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The normalized domain URL returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "logoUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The hosted logo URL when available."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "categories": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The category path returned by Klazify."
                    },
                    "confidence": {
                      "anyOf": [
                        {
                          "type": "number",
                          "description": "The confidence score between 0 and 1 when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "iabCategory": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The IAB category identifier or label when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "raw": {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The raw category payload returned by Klazify."
                    }
                  },
                  "additionalProperties": false,
                  "description": "One Klazify category classification."
                },
                "description": "The categories returned by Klazify."
              },
              "socialMedia": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "facebookUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Facebook profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "twitterUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Twitter or X profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "instagramUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Instagram profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "youtubeUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The YouTube channel URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "linkedinUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The LinkedIn profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "githubUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The GitHub profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "pinterestUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Pinterest profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "mediumUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Medium profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "raw": {
                        "type": "object",
                        "properties": {},
                        "additionalProperties": true,
                        "description": "The raw social media payload returned by Klazify."
                      }
                    },
                    "additionalProperties": false,
                    "description": "Normalized social media links returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw domain payload returned by Klazify."
              }
            },
            "additionalProperties": false,
            "description": "Normalized Klazify domain overview data."
          },
          "socialMedia": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "facebookUrl": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The Facebook profile URL when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "twitterUrl": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The Twitter or X profile URL when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "instagramUrl": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The Instagram profile URL when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "youtubeUrl": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The YouTube channel URL when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "linkedinUrl": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The LinkedIn profile URL when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "githubUrl": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The GitHub profile URL when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "pinterestUrl": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The Pinterest profile URL when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "mediumUrl": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The Medium profile URL when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "raw": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The raw social media payload returned by Klazify."
                  }
                },
                "additionalProperties": false,
                "description": "Normalized social media links returned by Klazify."
              },
              {
                "type": "null"
              }
            ]
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw Klazify response payload."
          }
        },
        "additionalProperties": false,
        "description": "The social media response returned by Klazify."
      }
    },
    {
      "id": "klazify.get_tech_stack",
      "service": "klazify",
      "name": "get_tech_stack",
      "description": "Return the detected technology stack for one website URL with Klazify.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "minLength": 1,
            "description": "The website URL or email address to enrich with Klazify."
          },
          "refresh": {
            "type": "boolean",
            "description": "Whether Klazify should fetch fresh live data when supported."
          }
        },
        "additionalProperties": false,
        "required": [
          "url"
        ],
        "description": "Input for a Klazify single-URL enrichment action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "description": "Whether the Klazify request succeeded."
          },
          "domain": {
            "type": "object",
            "properties": {
              "domainUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The normalized domain URL returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "logoUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The hosted logo URL when available."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "categories": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The category path returned by Klazify."
                    },
                    "confidence": {
                      "anyOf": [
                        {
                          "type": "number",
                          "description": "The confidence score between 0 and 1 when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "iabCategory": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The IAB category identifier or label when provided."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "raw": {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The raw category payload returned by Klazify."
                    }
                  },
                  "additionalProperties": false,
                  "description": "One Klazify category classification."
                },
                "description": "The categories returned by Klazify."
              },
              "socialMedia": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "facebookUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Facebook profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "twitterUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Twitter or X profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "instagramUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Instagram profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "youtubeUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The YouTube channel URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "linkedinUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The LinkedIn profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "githubUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The GitHub profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "pinterestUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Pinterest profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "mediumUrl": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The Medium profile URL when available."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "raw": {
                        "type": "object",
                        "properties": {},
                        "additionalProperties": true,
                        "description": "The raw social media payload returned by Klazify."
                      }
                    },
                    "additionalProperties": false,
                    "description": "Normalized social media links returned by Klazify."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw domain payload returned by Klazify."
              }
            },
            "additionalProperties": false,
            "description": "Normalized Klazify domain overview data."
          },
          "company": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company name when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "city": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company city when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "stateCode": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company state or region code when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "countryCode": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The company country code when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "employeesRange": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The employee range when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "revenue": {
                    "anyOf": [
                      {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "Revenue returned as a string."
                          },
                          {
                            "type": "number",
                            "description": "Revenue returned as a number."
                          }
                        ],
                        "description": "The company revenue value when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "raised": {
                    "anyOf": [
                      {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "Raised amount returned as a string."
                          },
                          {
                            "type": "number",
                            "description": "Raised amount returned as a number."
                          }
                        ],
                        "description": "The total funding amount when available."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "tags": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "One company tag."
                    },
                    "description": "The company tags returned by Klazify."
                  },
                  "tech": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "One technology."
                    },
                    "description": "The company technologies returned by Klazify."
                  },
                  "raw": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The raw company payload returned by Klazify."
                  }
                },
                "additionalProperties": false,
                "description": "Normalized company profile data returned by Klazify."
              },
              {
                "type": "null"
              }
            ]
          },
          "technologies": {
            "type": "array",
            "items": {
              "type": "string",
              "description": "One technology identifier."
            },
            "description": "The normalized technology identifiers returned by Klazify."
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw Klazify response payload."
          }
        },
        "additionalProperties": false,
        "description": "The technology stack response returned by Klazify."
      }
    }
  ]
}
