{"openapi":"3.1.0","info":{"title":"Fiber AI API","version":"1.44.0","description":"# Welcome to the Fiber AI API!\n\n\n\nGet your API key at <https://fiber.ai/app/api>.\n\n## Authentication\n\nInclude your API key in **one** of the following ways (listed in priority order):\n\n**Option 1 — Request body (POST) or query params (GET):**\n```json\n{\n\"apiKey\": \"YOUR_API_KEY\"\n}\n```\n\nFor a GET request, you can include your API key in the query params like this:\n```\n?apiKey=YOUR_API_KEY\n```\n\n**Option 2 — `x-api-key` header:**\n```\nx-api-key: YOUR_API_KEY\n```\n\n**Option 3 — `Authorization` header (Bearer token):**\n```\nAuthorization: Bearer YOUR_API_KEY\n```\n\nIf an API key is provided in both the body/query and a header, the body/query value takes precedence.\n\n## Rate limits\n\nEach endpoint has its own rate limit, and if you exceed it you will get a '429' error. Please contact us if you'd like to request a higher rate limit.\n\n## Client timeouts\n\nSome sync endpoints perform live data fetches or multi-step enrichment and can take longer than the default HTTP client timeout (often 30s). Endpoints that require extra time display a **Recommended timeout** badge in their documentation. Configure your HTTP client's timeout to at least the recommended value before calling those endpoints to avoid premature connection drops.\n\n## Troubleshooting\n\nNeed help? Write to adi@fiber.ai or your contact on the Fiber team.\n\n## Webhooks\n\nFiber can send webhook notifications to your application when certain events occur. You can configure your webhook endpoints at <https://fiber.ai/app/api> (the same page where you manage your API keys).\n\nFor a full list of available webhook event types, see <https://www.svix.com/event-types/us/org_36NygGf4vTv8iDHHZgXdCNazcJx/>.\n\n# SDKs & MCP\n\nIntegrate the Fiber API into your applications with official SDKs or via **MCP** (Model Context Protocol) for LLM and AI agents.\n\n- **[llms.txt](/llms.txt)** — Agent-facing index (routing, MCP workflows, links to `/ai-docs/`).\n- **[ai-docs](/ai-docs/index.md)** — Markdown docs for each endpoint; each lives at `/ai-docs/<operationId>.md`.\n- **Node.js SDK:** <https://www.npmjs.com/package/@fiberai/sdk>\n- **Python SDK:** <https://pypi.org/project/fiberai/>\n- **[Fiber SDKs](https://docs.fiber.ai/article/fiber-sdks)** — Client libraries and usage guides for your language or framework.\n- **[Using MCP in LLMs](https://docs.fiber.ai/article/using-mcp-in-llms)** — Connect Claude, Cursor, and other MCP-compatible tools to Fiber.\n- **[Developing with AI agents](https://docs.fiber.ai/article/developing-with-ai-agents)** — Plugins, MCP servers, skills, and quickstart for building with Fiber in your IDE.\n\n---\n\n"},"components":{"schemas":{"HeadcountCrossedThreshold":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"headcount_crossed_threshold"},"entityType":{"type":"string","const":"company"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when headcount crosses the threshold going up or down"},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"The employee count threshold to watch for crossing. Any positive integer is accepted."}},"required":["type","entityType","direction","threshold"],"title":"Headcount crossed threshold"},"HeadcountGrowthPercent":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"headcount_growth_percent"},"entityType":{"type":"string","const":"company"},"minPercentChange":{"type":"number","exclusiveMinimum":0,"maximum":1000,"description":"Minimum percent change to trigger (e.g. 20 means 20% growth)"},"direction":{"type":"string","enum":["grew","shrank","either"],"description":"Whether to alert on growth, shrinkage, or either"},"minStartingHeadcount":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if the company had at least this many employees before the change. Omit for any starting size."}},"required":["type","entityType","minPercentChange","direction"],"title":"Headcount growth percent"},"NewFundingRound":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"new_funding_round"},"entityType":{"type":"string","const":"company"},"minAmountUsd":{"type":["number","null"],"minimum":0,"description":"Only alert for rounds above this amount. Omit for any amount."},"roundTypes":{"type":["array","null"],"items":{"type":"string","enum":["pre_seed","seed","angel","series_a","series_b","series_c","series_d","series_e","series_f","series_g","private_equity","debt_financing","grant","convertible_note","corporate_round","undisclosed"]},"minItems":1,"description":"Round types to alert on. Defaults to equity-focused types when omitted. Set explicitly to include debt/grant types."}},"required":["type","entityType"],"title":"New funding round"},"FundingStageChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"funding_stage_changed"},"entityType":{"type":"string","const":"company"},"toStages":{"type":["array","null"],"items":{"type":"string","enum":["pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","private_equity","public","acquired"]},"minItems":1,"description":"Only alert if new stage is one of these. Omit for any stage change."}},"required":["type","entityType"],"title":"Funding stage changed"},"JobPostingWithKeyword":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"job_posting_with_keyword"},"entityType":{"type":"string","const":"company"},"keywords":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Alert when a job posting title contains any of these keywords"},"seniorityLevels":{"type":["array","null"],"items":{"type":"string","enum":["Internship","Entry level","Associate","Mid-Senior level","Director","Executive"]},"minItems":1,"description":"Only alert for these seniority levels. Omit for any level."},"modalities":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]},"minItems":1,"description":"Only alert for these job modalities. Omit for any."},"locationTypes":{"type":["array","null"],"items":{"type":"string","enum":["remote","on_site","hybrid"]},"minItems":1,"description":"Deprecated. Use modalities instead.","deprecated":true},"minPostings":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if at least this many NEW matching postings are detected in a single check cycle. Omit for 1 (any new match)."}},"required":["type","entityType","keywords"],"title":"Job posting with keyword"},"JobPostingInFunction":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"job_posting_in_function"},"entityType":{"type":"string","const":"company"},"jobFunctions":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administrative","Advertising","Analyst","Art / Creative","Business Development","Community & Social Services","Consulting","Customer Service","Design","Distribution","Education","Engineering","Entrepreneurship","Finance","General Business","Health Care Provider","Human Resources","Information Technology","Legal","Management","Manufacturing","Marketing","Military & Protective Services","Other","Product Management","Production","Program & Product Management","Project Management","Public Relations","Purchasing","Quality Assurance","Real Estate","Research","Sales","Science","Strategy / Planning","Supply Chain","Training","Writing / Editing"]},"description":"Alert when a job posting is in any of these departments/functions."},"minPostings":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if at least this many NEW matching postings are detected in a single check cycle. Omit for 1 (any new match)."}},"required":["type","entityType","jobFunctions"],"title":"Job posting in function"},"NewsWithKeyword":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"news_with_keyword"},"entityType":{"type":"string","const":"company"},"keywords":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Alert when a news article title or summary matches any keyword"},"sentiment":{"type":["string","null"],"enum":["positive","negative","neutral",null],"description":"Only alert for news with this sentiment. Omit for any sentiment."}},"required":["type","entityType","keywords"],"title":"News with keyword"},"CompanyNews":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_news"},"entityType":{"type":"string","const":"company"},"sentiment":{"type":["string","null"],"enum":["positive","negative","neutral",null],"description":"Only alert for news with this sentiment. Omit for any sentiment."},"minArticles":{"type":["integer","null"],"minimum":1,"description":"Only alert when at least this many articles are detected in a single check. Useful for filtering noise from single tangential mentions. Omit for any count."}},"required":["type","entityType"],"title":"Company news"},"HqLocationChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"hq_location_changed"},"entityType":{"type":"string","const":"company"}},"required":["type","entityType"],"title":"HQ location changed"},"CompanyStatusChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_status_changed"},"entityType":{"type":"string","const":"company"},"toStatuses":{"type":["array","null"],"items":{"type":"string","enum":["operating","acquired","closed","ipo","subsidiary"]},"minItems":1,"description":"Only alert if new status is one of these. Omit for any status change."}},"required":["type","entityType"],"title":"Company status changed"},"TechnologyAdded":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"technology_added"},"entityType":{"type":"string","const":"company"},"technologies":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for these technologies. Omit for any new technology."}},"required":["type","entityType"],"title":"Technology added"},"CompanyPosted":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_posted"},"entityType":{"type":"string","const":"company"},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."}},"required":["type","entityType"],"title":"Company posted"},"CompanyPostedWithKeyword":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_posted_with_keyword"},"entityType":{"type":"string","const":"company"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Alert for posts matching these keywords."},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."}},"required":["type","entityType"],"title":"Company posted with keyword"},"FollowerCountGrowth":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"follower_count_growth"},"entityType":{"type":"string","const":"company"},"minAbsoluteGrowth":{"type":["integer","null"],"minimum":0,"description":"Minimum absolute follower increase to trigger. Omit or set to 0 for any increase."},"minPercentGrowth":{"type":["number","null"],"exclusiveMinimum":0,"description":"Minimum percent follower increase to trigger. Omit for any increase."},"minStartingFollowerCount":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if the company had at least this many followers before the growth. Omit for any starting count."}},"required":["type","entityType"],"title":"Follower count growth"},"CompanyNameChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_name_changed"},"entityType":{"type":"string","const":"company"}},"required":["type","entityType"],"title":"Company name changed"},"CompanyDescriptionChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_description_changed"},"entityType":{"type":"string","const":"company"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new description contains one of these keywords. Omit for any change."}},"required":["type","entityType"],"title":"Company description changed"},"CompanyWentInactive":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_went_inactive"},"entityType":{"type":"string","const":"company"}},"required":["type","entityType"],"description":"Fires when a company becomes inactive.","title":"Company went inactive"},"EmployeeCountMilestone":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"employee_count_milestone"},"entityType":{"type":"string","const":"company"},"milestone":{"type":"integer","exclusiveMinimum":0,"description":"The employee count threshold to watch for crossing. Any positive integer is accepted. Equivalent to 'threshold' in headcount_crossed_threshold."},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when crossing above or below the milestone"}},"required":["type","entityType","milestone","direction"],"description":"Fires when the employee count crosses the specified value. Supports any positive integer, not just round milestones. Functionally equivalent to headcount_crossed_threshold.","title":"Employee count milestone"},"NewOfficeLocation":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"new_office_location"},"entityType":{"type":"string","const":"company"},"countries":{"type":["array","null"],"items":{"type":"string","pattern":"^[A-Z]{3}$","minLength":3,"maxLength":3},"minItems":1,"description":"ISO 3166-1 alpha-3 country codes (e.g. 'USA', 'GBR', 'DEU'). Only alert for offices in these countries. Omit for any new office."},"cities":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"City names (e.g. 'San Francisco', 'London', 'Berlin'). Only alert for offices in these cities. Omit for any new office."},"regions":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Region codes (e.g. 'X-EMEA', 'X-APAC', 'X-EUROPE'). Expands to constituent country codes. Omit for any."},"states":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"State or province names (e.g. 'California', 'Ontario'). Omit for any."}},"required":["type","entityType"],"title":"New office location"},"CompanyLogoChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_logo_changed"},"entityType":{"type":"string","const":"company"}},"required":["type","entityType"],"title":"Company logo changed"},"AcquiredCompany":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"acquired_company"},"entityType":{"type":"string","const":"company"},"minPriceUsd":{"type":["number","null"],"minimum":0,"description":"Only alert for acquisitions above this price. Omit for any acquisition."}},"required":["type","entityType"],"title":"Acquired company"},"NewInvestor":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"new_investor"},"entityType":{"type":"string","const":"company"},"investorNames":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert when a new investor's name matches one of these (exact, case-insensitive). Omit for any new investor."}},"required":["type","entityType"],"title":"New investor"},"RecentlyHiredWithTitle":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"recently_hired_with_title"},"entityType":{"type":"string","const":"company"},"titleKeywords":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Title keywords to search for. Fires when the company hires someone whose title matches any keyword."},"minNewHires":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Minimum number of NEW hires detected in a single check cycle to trigger the alert. Only counts employees who appeared since the last check. Omit for 1."}},"required":["type","entityType","titleKeywords"],"title":"Recently hired with title"},"DepartmentSizeThreshold":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"department_size_threshold"},"entityType":{"type":"string","const":"company"},"department":{"type":"string","enum":["Accounting","Administrative","Advertising","Analyst","Art / Creative","Business Development","Community & Social Services","Consulting","Customer Service","Design","Distribution","Education","Engineering","Entrepreneurship","Finance","General Business","Health Care Provider","Human Resources","Information Technology","Legal","Management","Manufacturing","Marketing","Military & Protective Services","Other","Product Management","Production","Program & Product Management","Project Management","Public Relations","Purchasing","Quality Assurance","Real Estate","Research","Sales","Science","Strategy / Planning","Supply Chain","Training","Writing / Editing"],"description":"Department to track. Matched against the company's organizational structure."},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"The employee count threshold to watch for crossing"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when department size crosses above or below the threshold"}},"required":["type","entityType","department","threshold","direction"],"title":"Department size threshold"},"RecentLayoffs":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"recent_layoffs"},"entityType":{"type":"string","const":"company"},"minPeopleAffected":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if at least this many people were laid off. Omit for any layoff."},"minPercentAffected":{"type":["number","null"],"exclusiveMinimum":0,"maximum":100,"description":"Only alert if at least this percentage of the workforce was laid off. Omit for any layoff."}},"required":["type","entityType"],"title":"Recent layoffs"},"HeadcountCrossedThresholdResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"headcount_crossed_threshold"},"entityType":{"type":"string","const":"company"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when headcount crosses the threshold going up or down"},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"The employee count threshold to watch for crossing. Any positive integer is accepted."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","direction","threshold","id"],"title":"Headcount crossed threshold"},"HeadcountGrowthPercentResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"headcount_growth_percent"},"entityType":{"type":"string","const":"company"},"minPercentChange":{"type":"number","exclusiveMinimum":0,"maximum":1000,"description":"Minimum percent change to trigger (e.g. 20 means 20% growth)"},"direction":{"type":"string","enum":["grew","shrank","either"],"description":"Whether to alert on growth, shrinkage, or either"},"minStartingHeadcount":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if the company had at least this many employees before the change. Omit for any starting size."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","minPercentChange","direction","id"],"title":"Headcount growth percent"},"NewFundingRoundResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"new_funding_round"},"entityType":{"type":"string","const":"company"},"minAmountUsd":{"type":["number","null"],"minimum":0,"description":"Only alert for rounds above this amount. Omit for any amount."},"roundTypes":{"type":["array","null"],"items":{"type":"string","enum":["pre_seed","seed","angel","series_a","series_b","series_c","series_d","series_e","series_f","series_g","private_equity","debt_financing","grant","convertible_note","corporate_round","undisclosed"]},"minItems":1,"description":"Round types to alert on. Defaults to equity-focused types when omitted. Set explicitly to include debt/grant types."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"New funding round"},"FundingStageChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"funding_stage_changed"},"entityType":{"type":"string","const":"company"},"toStages":{"type":["array","null"],"items":{"type":"string","enum":["pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","private_equity","public","acquired"]},"minItems":1,"description":"Only alert if new stage is one of these. Omit for any stage change."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Funding stage changed"},"JobPostingWithKeywordResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"job_posting_with_keyword"},"entityType":{"type":"string","const":"company"},"keywords":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Alert when a job posting title contains any of these keywords"},"seniorityLevels":{"type":["array","null"],"items":{"type":"string","enum":["Internship","Entry level","Associate","Mid-Senior level","Director","Executive"]},"minItems":1,"description":"Only alert for these seniority levels. Omit for any level."},"modalities":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]},"minItems":1,"description":"Only alert for these job modalities. Omit for any."},"locationTypes":{"type":["array","null"],"items":{"type":"string","enum":["remote","on_site","hybrid"]},"minItems":1,"description":"Deprecated. Use modalities instead.","deprecated":true},"minPostings":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if at least this many NEW matching postings are detected in a single check cycle. Omit for 1 (any new match)."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","keywords","id"],"title":"Job posting with keyword"},"JobPostingInFunctionResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"job_posting_in_function"},"entityType":{"type":"string","const":"company"},"jobFunctions":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administrative","Advertising","Analyst","Art / Creative","Business Development","Community & Social Services","Consulting","Customer Service","Design","Distribution","Education","Engineering","Entrepreneurship","Finance","General Business","Health Care Provider","Human Resources","Information Technology","Legal","Management","Manufacturing","Marketing","Military & Protective Services","Other","Product Management","Production","Program & Product Management","Project Management","Public Relations","Purchasing","Quality Assurance","Real Estate","Research","Sales","Science","Strategy / Planning","Supply Chain","Training","Writing / Editing"]},"description":"Alert when a job posting is in any of these departments/functions."},"minPostings":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if at least this many NEW matching postings are detected in a single check cycle. Omit for 1 (any new match)."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","jobFunctions","id"],"title":"Job posting in function"},"NewsWithKeywordResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"news_with_keyword"},"entityType":{"type":"string","const":"company"},"keywords":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Alert when a news article title or summary matches any keyword"},"sentiment":{"type":["string","null"],"enum":["positive","negative","neutral",null],"description":"Only alert for news with this sentiment. Omit for any sentiment."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","keywords","id"],"title":"News with keyword"},"CompanyNewsResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_news"},"entityType":{"type":"string","const":"company"},"sentiment":{"type":["string","null"],"enum":["positive","negative","neutral",null],"description":"Only alert for news with this sentiment. Omit for any sentiment."},"minArticles":{"type":["integer","null"],"minimum":1,"description":"Only alert when at least this many articles are detected in a single check. Useful for filtering noise from single tangential mentions. Omit for any count."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Company news"},"HqLocationChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"hq_location_changed"},"entityType":{"type":"string","const":"company"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"HQ location changed"},"CompanyStatusChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_status_changed"},"entityType":{"type":"string","const":"company"},"toStatuses":{"type":["array","null"],"items":{"type":"string","enum":["operating","acquired","closed","ipo","subsidiary"]},"minItems":1,"description":"Only alert if new status is one of these. Omit for any status change."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Company status changed"},"TechnologyAddedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"technology_added"},"entityType":{"type":"string","const":"company"},"technologies":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for these technologies. Omit for any new technology."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Technology added"},"CompanyPostedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_posted"},"entityType":{"type":"string","const":"company"},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Company posted"},"CompanyPostedWithKeywordResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_posted_with_keyword"},"entityType":{"type":"string","const":"company"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Alert for posts matching these keywords."},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Company posted with keyword"},"FollowerCountGrowthResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"follower_count_growth"},"entityType":{"type":"string","const":"company"},"minAbsoluteGrowth":{"type":["integer","null"],"minimum":0,"description":"Minimum absolute follower increase to trigger. Omit or set to 0 for any increase."},"minPercentGrowth":{"type":["number","null"],"exclusiveMinimum":0,"description":"Minimum percent follower increase to trigger. Omit for any increase."},"minStartingFollowerCount":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if the company had at least this many followers before the growth. Omit for any starting count."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Follower count growth"},"CompanyNameChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_name_changed"},"entityType":{"type":"string","const":"company"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Company name changed"},"CompanyDescriptionChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_description_changed"},"entityType":{"type":"string","const":"company"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new description contains one of these keywords. Omit for any change."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Company description changed"},"CompanyWentInactiveResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_went_inactive"},"entityType":{"type":"string","const":"company"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"description":"Fires when a company becomes inactive.","title":"Company went inactive"},"EmployeeCountMilestoneResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"employee_count_milestone"},"entityType":{"type":"string","const":"company"},"milestone":{"type":"integer","exclusiveMinimum":0,"description":"The employee count threshold to watch for crossing. Any positive integer is accepted. Equivalent to 'threshold' in headcount_crossed_threshold."},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when crossing above or below the milestone"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","milestone","direction","id"],"description":"Fires when the employee count crosses the specified value. Supports any positive integer, not just round milestones. Functionally equivalent to headcount_crossed_threshold.","title":"Employee count milestone"},"NewOfficeLocationResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"new_office_location"},"entityType":{"type":"string","const":"company"},"countries":{"type":["array","null"],"items":{"type":"string","pattern":"^[A-Z]{3}$","minLength":3,"maxLength":3},"minItems":1,"description":"ISO 3166-1 alpha-3 country codes (e.g. 'USA', 'GBR', 'DEU'). Only alert for offices in these countries. Omit for any new office."},"cities":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"City names (e.g. 'San Francisco', 'London', 'Berlin'). Only alert for offices in these cities. Omit for any new office."},"regions":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Region codes (e.g. 'X-EMEA', 'X-APAC', 'X-EUROPE'). Expands to constituent country codes. Omit for any."},"states":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"State or province names (e.g. 'California', 'Ontario'). Omit for any."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"New office location"},"CompanyLogoChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"company_logo_changed"},"entityType":{"type":"string","const":"company"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Company logo changed"},"AcquiredCompanyResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"acquired_company"},"entityType":{"type":"string","const":"company"},"minPriceUsd":{"type":["number","null"],"minimum":0,"description":"Only alert for acquisitions above this price. Omit for any acquisition."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Acquired company"},"NewInvestorResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"new_investor"},"entityType":{"type":"string","const":"company"},"investorNames":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert when a new investor's name matches one of these (exact, case-insensitive). Omit for any new investor."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"New investor"},"RecentlyHiredWithTitleResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"recently_hired_with_title"},"entityType":{"type":"string","const":"company"},"titleKeywords":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Title keywords to search for. Fires when the company hires someone whose title matches any keyword."},"minNewHires":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Minimum number of NEW hires detected in a single check cycle to trigger the alert. Only counts employees who appeared since the last check. Omit for 1."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","titleKeywords","id"],"title":"Recently hired with title"},"DepartmentSizeThresholdResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"department_size_threshold"},"entityType":{"type":"string","const":"company"},"department":{"type":"string","enum":["Accounting","Administrative","Advertising","Analyst","Art / Creative","Business Development","Community & Social Services","Consulting","Customer Service","Design","Distribution","Education","Engineering","Entrepreneurship","Finance","General Business","Health Care Provider","Human Resources","Information Technology","Legal","Management","Manufacturing","Marketing","Military & Protective Services","Other","Product Management","Production","Program & Product Management","Project Management","Public Relations","Purchasing","Quality Assurance","Real Estate","Research","Sales","Science","Strategy / Planning","Supply Chain","Training","Writing / Editing"],"description":"Department to track. Matched against the company's organizational structure."},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"The employee count threshold to watch for crossing"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when department size crosses above or below the threshold"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","department","threshold","direction","id"],"title":"Department size threshold"},"RecentLayoffsResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"recent_layoffs"},"entityType":{"type":"string","const":"company"},"minPeopleAffected":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Only alert if at least this many people were laid off. Omit for any layoff."},"minPercentAffected":{"type":["number","null"],"exclusiveMinimum":0,"maximum":100,"description":"Only alert if at least this percentage of the workforce was laid off. Omit for any layoff."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Recent layoffs"},"TrackerSignalOutput":{"type":"object","properties":{"id":{"type":"string","description":"Signal ID."},"entityId":{"type":"string","description":"Tracked entity ID."},"entityType":{"type":"string","enum":["company","person"],"description":"Entity type."},"linkedinIdentifier":{"type":"string","description":"LinkedIn org ID or user ID."},"linkedinSlug":{"type":["string","null"],"description":"The identifying part of a person or company's LinkedIn URL, such as `williamhgates` for `https://www.linkedin.com/in/williamhgates/` or `google` for `https://www.linkedin.com/company/google`."},"linkedinUrl":{"type":["string","null"],"description":"Full LinkedIn URL for the tracked entity, like `https://www.linkedin.com/company/google` for companies or `https://www.linkedin.com/in/williamhgates` for people."},"type":{"type":"string","description":"Signal type (e.g. headcount_crossed_threshold)."},"summary":{"type":["string","null"],"description":"Human-readable description of what changed."},"changeData":{"type":"array","items":{"anyOf":[{"allOf":[{"$ref":"#/components/schemas/FundingStageChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/LocationDeltaChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/CompanyLocationChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/FundingRoundChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/JobPostingChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/NewsArticleChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/LinkedInPostChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/PromotionChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/DemotionChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/RoleTenureChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/CompanyTenureChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/LayoffEventChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/TrackedEmployeeChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/InvestorChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/AcquisitionChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/CertificationChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/DepartmentSizeChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/PersonReactionChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/PersonCommentChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/DepartedFromListChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/ScalarDeltaChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/PersonExperienceChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/TenureChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/NumericDeltaChange"}],"additionalProperties":true},{"allOf":[{"$ref":"#/components/schemas/NamedItemChange"}],"additionalProperties":true}]},"description":"Array of objects describing what changed. Shape depends on signal type."},"sources":{"type":"array","items":{"type":"string"},"description":"URLs providing proof or more information about this signal."},"methodology":{"type":"string","minLength":1,"description":"Explanation of how this signal was detected and verified."},"observedAt":{"type":"string","format":"date-time","description":"When we detected the signal. For backfilled signals this reflects the detection time, not when the event happened — use `eventDate` for the real-world event date."},"eventDate":{"type":["string","null"],"format":"date-time","description":"The real-world date the underlying event occurred (e.g. when a job was posted, a funding round announced, or a hire started), taken from `changeData`. Use this for time-series analysis. Null for signal types that have no associated event date, such as headcount or status changes."},"centiCreditsCharged":{"type":"integer","minimum":0,"description":"Credits charged for the tracker check that produced this signal, in centi-credits (100 = 1 credit)."},"isDummy":{"type":"boolean","description":"When true, this signal was generated synthetically via the `fire-dummy` endpoint."}},"required":["id","entityId","entityType","linkedinIdentifier","linkedinSlug","linkedinUrl","type","summary","changeData","sources","methodology","observedAt","centiCreditsCharged","isDummy"],"title":"Tracker signal output"},"FundingStageChange":{"type":"object","properties":{"kind":{"type":"string","const":"scalar"},"previous":{"anyOf":[{"type":"string"},{"type":"boolean"},{"type":"null"}],"description":"Previous funding stage"},"current":{"anyOf":[{"type":"string"},{"type":"boolean"},{"type":"null"}],"description":"Current funding stage"},"currentRoundDetails":{"oneOf":[{"$ref":"#/components/schemas/FundingRoundChange"},{"type":"null"}],"description":"Details of the funding round that drove the new stage, when available"}},"required":["kind"]},"FundingRoundChange":{"type":"object","properties":{"type":{"type":"string","description":"Funding round type"},"amountUsd":{"type":["number","null"],"description":"Amount raised in USD"},"date":{"type":["string","null"],"description":"ISO date of the round"},"investors":{"type":"array","items":{"type":"string"},"description":"Investor names"},"crunchbaseUrl":{"type":["string","null"],"description":"URL to the funding round page on Crunchbase, when available"}},"required":["type","investors"]},"LocationDeltaChange":{"type":"object","properties":{"kind":{"type":"string","const":"location"},"previous":{"oneOf":[{"$ref":"#/components/schemas/CompanyLocationChange"},{"type":"null"}]},"current":{"oneOf":[{"$ref":"#/components/schemas/CompanyLocationChange"},{"type":"null"}]},"countryChanged":{"type":"boolean"},"stateChanged":{"type":"boolean"},"cityChanged":{"type":"boolean"},"distanceMiles":{"type":["number","null"],"description":"Distance moved in miles, when both locations are geocoded"}},"required":["kind","previous","current","countryChanged","stateChanged","cityChanged"]},"CompanyLocationChange":{"type":"object","properties":{"city":{"type":["string","null"],"description":"City name"},"state":{"type":["string","null"],"description":"State or province"},"country":{"type":["string","null"],"description":"Country name"},"countryCode":{"type":["string","null"],"description":"ISO country code"},"coordinates":{"type":["object","null"],"properties":{"latitude":{"type":"number","description":"Latitude"},"longitude":{"type":"number","description":"Longitude"}},"required":["latitude","longitude"],"description":"Geocoded coordinates, when known"},"streetAddress":{"type":["string","null"],"description":"Street address of the office"},"postalCode":{"type":["string","null"],"description":"Postal or ZIP code"},"changeType":{"type":["string","null"],"enum":["added",null],"description":"Marks a location as newly added. New office alerts report only net-new locations, so this is always 'added'; the field is unset in other location signals."},"officeMapUrl":{"type":["string","null"],"description":"Map link for this specific office location, when there is enough address data to build one."}}},"JobPostingChange":{"type":"object","properties":{"jobId":{"type":"string","description":"LinkedIn job ID"},"title":{"type":"string","description":"Job title"},"jobUrl":{"type":["string","null"],"description":"URL to the job posting"},"location":{"type":["string","null"],"description":"Job location"},"locationType":{"type":["string","null"],"enum":["remote","on_site","hybrid",null],"description":"Location type"},"seniorityLevel":{"type":["string","null"],"description":"Seniority level"},"jobFunction":{"type":["string","null"],"description":"Department or function"},"jobFunctions":{"type":["array","null"],"items":{"type":"string"},"description":"All job functions this posting belongs to"},"postedAt":{"type":["string","null"],"description":"ISO date when posted"},"status":{"type":"string","enum":["active","closed"],"description":"Job posting status"}},"required":["jobId","title","status"]},"NewsArticleChange":{"type":"object","properties":{"url":{"type":"string","description":"Article URL"},"title":{"type":"string","description":"Article title"},"publishedAt":{"type":["string","null"],"description":"ISO date published"},"publisherName":{"type":["string","null"],"description":"Publisher name"},"summary":{"type":["string","null"],"description":"Article summary"},"sentiment":{"type":["string","null"],"enum":["positive","negative","neutral",null],"description":"Sentiment of the article. Null if not classified."}},"required":["url","title"]},"LinkedInPostChange":{"type":"object","properties":{"postId":{"type":"string","description":"LinkedIn post ID"},"postUrl":{"type":["string","null"],"description":"URL to the post"},"caption":{"type":["string","null"],"description":"Post content"},"postedAt":{"type":["string","null"],"description":"ISO date when posted"},"numReactions":{"type":["number","null"],"description":"Number of reactions"},"numComments":{"type":["number","null"],"description":"Number of comments"},"numShares":{"type":["number","null"],"description":"Number of shares"},"posterName":{"type":["string","null"],"description":"Display name of the person who posted"},"posterSlug":{"type":["string","null"],"description":"LinkedIn slug of the poster (e.g. 'williamhgates')"},"posterUrl":{"type":["string","null"],"description":"Full LinkedIn profile URL of the poster"},"posterProfilePicture":{"type":["string","null"],"description":"Profile picture URL of the poster"}},"required":["postId"]},"PersonExperienceChange":{"type":"object","properties":{"linkedinCompanyId":{"type":["string","null"],"description":"LinkedIn company ID"},"companyName":{"type":["string","null"],"description":"Company name"},"companyLinkedinUrl":{"type":["string","null"],"description":"Company LinkedIn URL"},"linkedinCompanySlug":{"type":["string","null"],"description":"LinkedIn company vanity slug"},"companyDomains":{"type":["array","null"],"items":{"type":"string"},"description":"Known company domains"},"title":{"type":["string","null"],"description":"Job title"},"isCurrent":{"type":"boolean","description":"Whether this is a current position"},"startDate":{"type":["string","null"],"description":"ISO start date"},"endDate":{"type":["string","null"],"description":"ISO end date"},"location":{"type":["string","null"],"description":"Position location"},"employmentType":{"type":["string","null"],"description":"Employment type"},"seniority":{"type":["string","null"],"description":"Seniority level"}},"required":["isCurrent"]},"PromotionChange":{"allOf":[{"$ref":"#/components/schemas/PersonExperienceChange"}],"properties":{"previousTitle":{"type":["string","null"],"description":"Title before the promotion"},"previousCompany":{"type":["string","null"],"description":"Company name before the promotion"}}},"DemotionChange":{"allOf":[{"$ref":"#/components/schemas/PersonExperienceChange"}],"properties":{"previousTitle":{"type":["string","null"],"description":"Title before the demotion"},"previousCompany":{"type":["string","null"],"description":"Company name before the demotion"}}},"TenureChange":{"type":"object","properties":{"kind":{"type":"string","const":"numeric"},"previous":{"type":["number","null"],"description":"Previous tenure in months"},"current":{"type":["number","null"],"description":"Current tenure in months"},"direction":{"type":"string","enum":["increased","decreased"],"description":"Direction of change"},"absoluteChange":{"type":"number","description":"Absolute change in months"},"percentChange":{"type":["number","null"],"description":"Percent change, null if previous was zero or null"}},"required":["kind","direction","absoluteChange"]},"CompanyTenureChange":{"allOf":[{"$ref":"#/components/schemas/TenureChange"}],"properties":{"companyName":{"type":["string","null"],"description":"Name of the company where tenure was reached"},"linkedinCompanyId":{"type":["string","null"],"description":"LinkedIn company identifier"}}},"RoleTenureChange":{"allOf":[{"$ref":"#/components/schemas/CompanyTenureChange"}],"properties":{"title":{"type":["string","null"],"description":"Job title of the role where tenure was reached"}}},"LayoffEventChange":{"type":"object","properties":{"date":{"type":["string","null"],"description":"ISO date of the layoff event"},"numLaidOff":{"type":["number","null"],"description":"Number of employees laid off"},"percentLaidOff":{"type":["number","null"],"minimum":0,"maximum":100,"description":"Percentage of workforce laid off"},"source":{"type":["string","null"],"description":"Source URL for the layoff report"}}},"TrackedEmployeeChange":{"type":"object","properties":{"userId":{"type":"string","description":"LinkedIn user ID"},"name":{"type":["string","null"],"description":"Employee name"},"title":{"type":["string","null"],"description":"Job title"},"startDate":{"type":["string","null"],"description":"ISO date when the employee started at this company"},"primarySlug":{"type":["string","null"],"description":"LinkedIn profile slug"},"linkedinUrl":{"type":["string","null"],"description":"Full LinkedIn profile URL"}},"required":["userId"]},"InvestorChange":{"type":"object","properties":{"name":{"type":"string","description":"Investor name"},"type":{"type":"array","items":{"type":"string"},"description":"Investor types"},"linkedinSlug":{"type":["string","null"],"description":"Investor LinkedIn profile slug"},"investorLinkedinUrl":{"type":["string","null"],"description":"Full LinkedIn URL for the investor."},"crunchbaseUrl":{"type":["string","null"],"description":"Reference URL"}},"required":["name","type"]},"AcquisitionChange":{"type":"object","properties":{"acquireeName":{"type":"string","description":"Name of the acquired company"},"acquireeUuid":{"type":["string","null"],"description":"Unique identifier"},"acquireeUrl":{"type":["string","null"],"description":"Reference URL"},"priceUsd":{"type":["number","null"],"description":"Acquisition price in USD"},"acquisitionDate":{"type":["string","null"],"description":"ISO date of acquisition"}},"required":["acquireeName"]},"CertificationChange":{"type":"object","properties":{"title":{"type":"string","description":"Certification title"},"company":{"type":["string","null"],"description":"Issuing organization"},"credentialId":{"type":["string","null"],"description":"Credential ID"},"issueDate":{"type":["string","null"],"description":"ISO issue date"}},"required":["title"]},"DepartmentSizeChange":{"type":"object","properties":{"department":{"type":"string","description":"Department name"},"count":{"type":"number","description":"Current employee count"}},"required":["department","count"]},"PersonReactionChange":{"type":"object","properties":{"reactionId":{"type":"string","description":"Unique reaction identifier (dedup key)"},"type":{"type":["string","null"],"description":"Reaction type (LIKE, LOVE, INSIGHTFUL, CELEBRATE, SUPPORT, FUNNY)"},"postContent":{"type":["string","null"],"description":"Content of the reacted post"},"postUrl":{"type":["string","null"],"description":"URL to the LinkedIn post"},"postAuthorName":{"type":["string","null"],"description":"Name of the post author"},"reactedAgo":{"type":["string","null"],"description":"Relative time since the reaction"},"reactedAt":{"type":["string","null"],"description":"Exact ISO timestamp when the reaction occurred"}},"required":["reactionId"]},"PersonCommentChange":{"type":"object","properties":{"commentId":{"type":"string","description":"Unique comment identifier (dedup key)"},"content":{"type":["string","null"],"description":"Content of the comment"},"postContent":{"type":["string","null"],"description":"Content of the original post"},"postUrl":{"type":["string","null"],"description":"URL to the LinkedIn post"},"postAuthorName":{"type":["string","null"],"description":"Name of the post author"},"commentedAgo":{"type":["string","null"],"description":"Relative time since the comment"},"commentedAt":{"type":["string","null"],"description":"Exact ISO timestamp when the comment was made"}},"required":["commentId"]},"DepartedFromListChange":{"type":"object","properties":{"listId":{"type":"string","minLength":1,"description":"ID of the dynamic tracker list the entity left"},"listName":{"type":"string","minLength":1,"description":"Name of the dynamic tracker list the entity left"},"reason":{"type":"string","const":"no_longer_matches","description":"Why the entity was removed — it no longer matches the list's query"}},"required":["listId","listName","reason"]},"ScalarDeltaChange":{"type":"object","properties":{"kind":{"type":"string","const":"scalar"},"previous":{"anyOf":[{"type":"string"},{"type":"boolean"},{"type":"null"}],"description":"Previous value"},"current":{"anyOf":[{"type":"string"},{"type":"boolean"},{"type":"null"}],"description":"Current value"}},"required":["kind"]},"NumericDeltaChange":{"type":"object","properties":{"kind":{"type":"string","const":"numeric"},"previous":{"type":["number","null"],"description":"Previous value"},"current":{"type":["number","null"],"description":"Current value"},"direction":{"type":"string","enum":["increased","decreased"],"description":"Direction of change"},"absoluteChange":{"type":"number","description":"Absolute numeric change"},"percentChange":{"type":["number","null"],"description":"Percent change, null if previous was zero or null"}},"required":["kind","direction","absoluteChange"]},"NamedItemChange":{"type":"object","properties":{"name":{"type":"string","description":"Name of the item (technology, tag, or skill)"}},"required":["name"]},"PersonChangedCompany":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_changed_company"},"entityType":{"type":"string","const":"person"},"toCompanies":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if they moved TO one of these companies (domains or slugs). Omit for any."},"fromCompanies":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if they moved FROM one of these companies. Omit for any."},"toTitleKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if their title at the new company contains one of these keywords."},"toSeniorityLevels":{"type":["array","null"],"items":{"type":"string","enum":["Internship","Entry level","Associate","Mid-Senior level","Director","Executive"]},"minItems":1,"description":"Only alert if their seniority at the new company is one of these levels."},"toEmploymentTypes":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Part-time","Contract","Internship","Temporary","Volunteer"]},"minItems":1,"description":"Only alert for these employment types at the new company. Omit for any."}},"required":["type","entityType"],"title":"Person changed company"},"PersonTitleChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_title_changed"},"entityType":{"type":"string","const":"person"},"titleKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new title contains one of these keywords. Omit for any title change."},"toSeniority":{"type":["array","null"],"items":{"type":"string","enum":["Internship","Entry level","Associate","Mid-Senior level","Director","Executive"]},"minItems":1,"description":"Only alert if the new position's seniority level matches one of these. Omit for any seniority."}},"required":["type","entityType"],"title":"Person title changed"},"PersonStealthChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_stealth_changed"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["entered","exited","either"],"description":"Whether to alert on entering stealth, exiting, or either"}},"required":["type","entityType","direction"],"title":"Person stealth changed"},"PersonOpenToWork":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_open_to_work"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they start or stop signaling open-to-work"}},"required":["type","entityType","direction"],"title":"Person open to work"},"PersonIsHiring":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_is_hiring"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they start or stop signaling is-hiring"}},"required":["type","entityType","direction"],"title":"Person is hiring"},"PersonHeadlineChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_headline_changed"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new headline contains one of these keywords. Omit for any change."}},"required":["type","entityType"],"title":"Person headline changed"},"PersonLocationChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_location_changed"},"entityType":{"type":"string","const":"person"},"toCountries":{"type":["array","null"],"items":{"type":"string","pattern":"^[A-Z]{3}$","minLength":3,"maxLength":3},"minItems":1,"description":"ISO 3166-1 alpha-3 country codes (e.g. 'USA', 'GBR', 'DEU'). Only alert if moved to one of these countries. Omit for any relocation."},"fromCountries":{"type":["array","null"],"items":{"type":"string","pattern":"^[A-Z]{3}$","minLength":3,"maxLength":3},"minItems":1,"description":"Only alert if they moved FROM one of these countries. Omit for any."},"regions":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Region codes (e.g. 'X-EMEA', 'X-APAC'). Only alert if destination country is in one of these regions. Omit for any."}},"required":["type","entityType"],"title":"Person location changed"},"PersonTagGained":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_tag_gained"},"entityType":{"type":"string","const":"person"},"tags":{"type":"array","items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]},"minItems":1,"description":"Alert when the person gains any of these system-assigned tags."}},"required":["type","entityType","tags"],"title":"Person tag gained"},"PersonPosted":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_posted"},"entityType":{"type":"string","const":"person"},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."}},"required":["type","entityType"],"title":"Person posted"},"PersonPostedWithKeyword":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_posted_with_keyword"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Alert for posts matching these keywords."},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."}},"required":["type","entityType"],"title":"Person posted with keyword"},"PersonReactedToPost":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_reacted_to_post"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for reactions on posts whose content or author name matches these keywords. Omit for any reaction."},"reactionTypes":{"type":["array","null"],"items":{"type":"string","enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY"]},"minItems":1,"description":"Only alert for these reaction types. Omit for any type."}},"required":["type","entityType"],"title":"Person reacted to post"},"PersonCommentedOnPost":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_commented_on_post"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for comments where the comment text, post content (when available from provider), or post author name matches these keywords. Omit for any comment."}},"required":["type","entityType"],"title":"Person commented on post"},"PersonSkillsAdded":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_skills_added"},"entityType":{"type":"string","const":"person"},"skills":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for these specific skills being added. Omit for any new skill."}},"required":["type","entityType"],"title":"Person skills added"},"PersonGotPromoted":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_got_promoted"},"entityType":{"type":"string","const":"person"},"seniorityKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new title contains these seniority keywords (e.g. 'VP', 'Director'). Omit for any promotion."}},"required":["type","entityType"],"title":"Person got promoted"},"PersonStartedCompany":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_started_company"},"entityType":{"type":"string","const":"person"}},"required":["type","entityType"],"title":"Person started company"},"PersonEmploymentTypeChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_employment_type_changed"},"entityType":{"type":"string","const":"person"},"toTypes":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Part-time","Contract","Internship","Temporary","Volunteer"]},"minItems":1,"description":"Only alert if new employment type is one of these. Omit for any change."}},"required":["type","entityType"],"title":"Person employment type changed"},"PersonConnectionsMilestone":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_connections_milestone"},"entityType":{"type":"string","const":"person"},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"Connection count to watch for crossing"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when crossing above or below the threshold"}},"required":["type","entityType","threshold","direction"],"title":"Person connections milestone"},"PersonFollowerMilestone":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_follower_milestone"},"entityType":{"type":"string","const":"person"},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"Follower count to watch for crossing"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when crossing above or below the threshold"}},"required":["type","entityType","threshold","direction"],"title":"Person follower milestone"},"PersonSummaryChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_summary_changed"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new summary contains one of these keywords. Omit for any change."}},"required":["type","entityType"],"title":"Person summary changed"},"PersonNewCertification":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_new_certification"},"entityType":{"type":"string","const":"person"},"certificationKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for certifications matching these keywords. Omit for any new cert."}},"required":["type","entityType"],"title":"Person new certification"},"PersonBecameVerified":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_became_verified"},"entityType":{"type":"string","const":"person"}},"required":["type","entityType"],"title":"Person became verified"},"PersonBecamePremium":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_became_premium"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they start or stop having premium status"}},"required":["type","entityType","direction"],"title":"Person became premium"},"PersonBecameInfluencer":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_became_influencer"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they join or leave the influencer program"}},"required":["type","entityType","direction"],"title":"Person became influencer"},"PersonBecameTopVoice":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_became_top_voice"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they earn or lose the top voice badge"}},"required":["type","entityType","direction"],"title":"Person became top voice"},"PersonGotDemoted":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_got_demoted"},"entityType":{"type":"string","const":"person"},"seniorityKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if the previous title contained these seniority keywords (e.g. 'VP', 'Director'). Omit for any demotion."}},"required":["type","entityType"],"title":"Person got demoted"},"PersonStuckInRole":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_stuck_in_role"},"entityType":{"type":"string","const":"person"},"thresholdMonths":{"type":"integer","minimum":1,"description":"Alert when the person has been in their current role for at least this many months without a title change."}},"required":["type","entityType","thresholdMonths"],"title":"Person stuck in role"},"PersonTenureMilestone":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_tenure_milestone"},"entityType":{"type":"string","const":"person"},"thresholdMonths":{"type":"integer","minimum":1,"description":"Alert when the person has been at their current company for at least this many months, regardless of role changes or promotions."}},"required":["type","entityType","thresholdMonths"],"title":"Person tenure milestone"},"PersonChangedCompanyResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_changed_company"},"entityType":{"type":"string","const":"person"},"toCompanies":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if they moved TO one of these companies (domains or slugs). Omit for any."},"fromCompanies":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if they moved FROM one of these companies. Omit for any."},"toTitleKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if their title at the new company contains one of these keywords."},"toSeniorityLevels":{"type":["array","null"],"items":{"type":"string","enum":["Internship","Entry level","Associate","Mid-Senior level","Director","Executive"]},"minItems":1,"description":"Only alert if their seniority at the new company is one of these levels."},"toEmploymentTypes":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Part-time","Contract","Internship","Temporary","Volunteer"]},"minItems":1,"description":"Only alert for these employment types at the new company. Omit for any."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person changed company"},"PersonTitleChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_title_changed"},"entityType":{"type":"string","const":"person"},"titleKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new title contains one of these keywords. Omit for any title change."},"toSeniority":{"type":["array","null"],"items":{"type":"string","enum":["Internship","Entry level","Associate","Mid-Senior level","Director","Executive"]},"minItems":1,"description":"Only alert if the new position's seniority level matches one of these. Omit for any seniority."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person title changed"},"PersonStealthChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_stealth_changed"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["entered","exited","either"],"description":"Whether to alert on entering stealth, exiting, or either"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","direction","id"],"title":"Person stealth changed"},"PersonOpenToWorkResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_open_to_work"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they start or stop signaling open-to-work"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","direction","id"],"title":"Person open to work"},"PersonIsHiringResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_is_hiring"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they start or stop signaling is-hiring"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","direction","id"],"title":"Person is hiring"},"PersonHeadlineChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_headline_changed"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new headline contains one of these keywords. Omit for any change."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person headline changed"},"PersonLocationChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_location_changed"},"entityType":{"type":"string","const":"person"},"toCountries":{"type":["array","null"],"items":{"type":"string","pattern":"^[A-Z]{3}$","minLength":3,"maxLength":3},"minItems":1,"description":"ISO 3166-1 alpha-3 country codes (e.g. 'USA', 'GBR', 'DEU'). Only alert if moved to one of these countries. Omit for any relocation."},"fromCountries":{"type":["array","null"],"items":{"type":"string","pattern":"^[A-Z]{3}$","minLength":3,"maxLength":3},"minItems":1,"description":"Only alert if they moved FROM one of these countries. Omit for any."},"regions":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Region codes (e.g. 'X-EMEA', 'X-APAC'). Only alert if destination country is in one of these regions. Omit for any."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person location changed"},"PersonTagGainedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_tag_gained"},"entityType":{"type":"string","const":"person"},"tags":{"type":"array","items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]},"minItems":1,"description":"Alert when the person gains any of these system-assigned tags."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","tags","id"],"title":"Person tag gained"},"PersonPostedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_posted"},"entityType":{"type":"string","const":"person"},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person posted"},"PersonPostedWithKeywordResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_posted_with_keyword"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Alert for posts matching these keywords."},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person posted with keyword"},"PersonReactedToPostResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_reacted_to_post"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for reactions on posts whose content or author name matches these keywords. Omit for any reaction."},"reactionTypes":{"type":["array","null"],"items":{"type":"string","enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY"]},"minItems":1,"description":"Only alert for these reaction types. Omit for any type."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person reacted to post"},"PersonCommentedOnPostResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_commented_on_post"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for comments where the comment text, post content (when available from provider), or post author name matches these keywords. Omit for any comment."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person commented on post"},"PersonSkillsAddedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_skills_added"},"entityType":{"type":"string","const":"person"},"skills":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for these specific skills being added. Omit for any new skill."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person skills added"},"PersonGotPromotedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_got_promoted"},"entityType":{"type":"string","const":"person"},"seniorityKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new title contains these seniority keywords (e.g. 'VP', 'Director'). Omit for any promotion."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person got promoted"},"PersonStartedCompanyResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_started_company"},"entityType":{"type":"string","const":"person"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person started company"},"PersonEmploymentTypeChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_employment_type_changed"},"entityType":{"type":"string","const":"person"},"toTypes":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Part-time","Contract","Internship","Temporary","Volunteer"]},"minItems":1,"description":"Only alert if new employment type is one of these. Omit for any change."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person employment type changed"},"PersonConnectionsMilestoneResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_connections_milestone"},"entityType":{"type":"string","const":"person"},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"Connection count to watch for crossing"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when crossing above or below the threshold"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","threshold","direction","id"],"title":"Person connections milestone"},"PersonFollowerMilestoneResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_follower_milestone"},"entityType":{"type":"string","const":"person"},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"Follower count to watch for crossing"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when crossing above or below the threshold"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","threshold","direction","id"],"title":"Person follower milestone"},"PersonSummaryChangedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_summary_changed"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new summary contains one of these keywords. Omit for any change."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person summary changed"},"PersonNewCertificationResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_new_certification"},"entityType":{"type":"string","const":"person"},"certificationKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for certifications matching these keywords. Omit for any new cert."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person new certification"},"PersonBecameVerifiedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_became_verified"},"entityType":{"type":"string","const":"person"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person became verified"},"PersonBecamePremiumResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_became_premium"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they start or stop having premium status"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","direction","id"],"title":"Person became premium"},"PersonBecameInfluencerResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_became_influencer"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they join or leave the influencer program"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","direction","id"],"title":"Person became influencer"},"PersonBecameTopVoiceResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_became_top_voice"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they earn or lose the top voice badge"},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","direction","id"],"title":"Person became top voice"},"PersonGotDemotedResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_got_demoted"},"entityType":{"type":"string","const":"person"},"seniorityKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if the previous title contained these seniority keywords (e.g. 'VP', 'Director'). Omit for any demotion."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","id"],"title":"Person got demoted"},"PersonStuckInRoleResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_stuck_in_role"},"entityType":{"type":"string","const":"person"},"thresholdMonths":{"type":"integer","minimum":1,"description":"Alert when the person has been in their current role for at least this many months without a title change."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","thresholdMonths","id"],"title":"Person stuck in role"},"PersonTenureMilestoneResponse":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"isDummy":{"type":"boolean","description":"When true, this rule only fires via the fire-dummy endpoint and is skipped during normal pipeline runs."},"type":{"type":"string","const":"person_tenure_milestone"},"entityType":{"type":"string","const":"person"},"thresholdMonths":{"type":"integer","minimum":1,"description":"Alert when the person has been at their current company for at least this many months, regardless of role changes or promotions."},"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."}},"required":["isDummy","type","entityType","thresholdMonths","id"],"title":"Person tenure milestone"}}},"paths":{"/openapi.json":{"get":{"operationId":"getOpenApi","summary":"Get OpenAPI schema","tags":["Utility"],"description":"Get the comprehensive, auto-generated OpenAPI spec for all Fiber APIs. **Note**: This file is very large, so we don't recommend feeding it into LLMs directly. Agents should instead fetch `/llms.txt` for routing instructions and `/ai-docs/<operationId>.md` for per-operation context. If you'd like to work with Fiber from Claude, ChatGPT, or another LLM, you can also use our MCP server, explained at <https://docs.fiber.ai/article/using-mcp-in-llms>.","responses":{"200":{"description":"Default Response"}}}},"/quickstart":{"get":{"operationId":"getQuickstartScript","summary":"Get quickstart install script","tags":["Quickstart"],"description":"Returns a bash script that signs up for a Fiber API trial and prints your API key.\n\nThe one-liner is:\n\n```bash\ncurl -fsSL https://api.fiber.ai/quickstart | bash\n```\n\nThe script handles the full flow end to end:\n\n1. Prompts for a work email and OTP (agents run non-interactively with `--json`).\n2. Calls `POST /v1/account/send-otp` and `POST /v1/account/verify-otp`.\n3. Stores the returned live API key at `$HOME/.config/fiber/credentials` (mode 0600).\n4. Verifies the key with `GET /v1/get-org-credits` and prints the balance.\n\nNo authentication is required to fetch the script. The response is `text/x-shellscript`, not JSON — pipe it to `bash`.","responses":{"200":{"description":"Default Response"}}}},"/health":{"get":{"operationId":"healthCheck","summary":"Health check","tags":["Utility"],"description":"Health check endpoint to check if the server is running","responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string","enum":["healthy"]},"timestamp":{"type":"string"}},"required":["status","timestamp"]}}}}}}},"/v1/get-org-credits":{"get":{"operationId":"getOrgCredits","summary":"Get organization credits","tags":["Account"],"description":"Get credits for an organization\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"organizationId":{"type":"string"},"subscriptionId":{"type":"string"},"max":{"type":"number"},"used":{"type":"number"},"available":{"type":"number"},"usagePeriodResetsOn":{"type":"string"},"creditsPerOperation":{"type":["object","null"],"properties":{"getCompanyFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getPersonFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getCompanyCountFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getJobPostingCountFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getPersonCountFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getInvestorFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"getInvestmentFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getJobPostingFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"textToCompanySearchParams":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"textToPersonSearchParams":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"textToSearchParams":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"liveEnrichCompany":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"liveEnrichPerson":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"liveEnrichPersonForContactReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"standardizeCompanySlug":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"standardizePersonSlug":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"workEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"personalEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"liteEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"litePhoneReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"liteReverseEmailLookup":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"instantEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"instantPhoneReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"allEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"phoneReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"combinedReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"validateEmail":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"validatePhone":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"emailToLinkedinUrl":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"kitchenSinkPerson":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"kitchenSinkCompany":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"salesNavCompanyScrape":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"salesNavPersonScrape":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"salesNavPersonScrapeWithoutLiveFetch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"googleMapsScrape":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"geolocation":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"jobTitleRewrite":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"combinedEnrichment":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":600}]}},"domainLookupAgent":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"localBusinessResearchAgent":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":400}]}},"githubLookupAgent":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"getLiProfileFromGithubUsername":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"getEmailFromGithubUsername":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"socialMediaFinderAgent":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"bulkCompanyLogoLookup":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":30}]}},"bulkProfilePicLookup":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":30}]}},"getLiProfilePosts":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiCompanyPosts":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiPostComments":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiPostReactions":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiProfileComments":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiProfileReactions":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiProfileLatestActivities":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"getLiProfileLastActiveDate":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getProfileLatestLiPost":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getCompanyLatestLiPost":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"savedSearchCompany":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"savedSearchProspect":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"premiumWorkEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"premiumPersonalEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"premiumAllEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"premiumPhoneReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"premiumCombinedReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":700}]}},"exhaustiveWorkEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"exhaustivePersonalEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"exhaustiveAllEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":900}]}},"exhaustivePhoneReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":400}]}},"exhaustiveCombinedReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":1200}]}},"getCompanyRevenue":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":400}]}},"multiSourceCompanySearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"multiSourcePersonSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"scoutingReportCompany":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":600}]}},"scoutingReportPerson":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":600}]}},"trackPersonsJobChanges":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"youtubeVideoTranscript":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"youtubeVideoDetails":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"youtubeVideoComments":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"youtubeSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"youtubeChannelDetails":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserDetails":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserPosts":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserFollowers":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserFollowing":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostDetails":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostReplies":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostQuotes":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostReposts":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostReactions":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserMentions":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"webpageScreenshot":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"webpageScrape":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"generateDepthChart":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":800}]}},"realEstateSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"flightSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"mosaicRow":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":1000}]}},"getEntityFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"trackEntity":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"trackEntitySilver":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"trackEntityGold":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":50}]}},"trackEntityPlatinum":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":25}]}},"blueCollarJobSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getCompanyLayoffs":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"reversePhoneLookup":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"findCompanyLookalikes":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":20}]}},"findPersonLookalikes":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":20}]}},"hotelSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"hotelPropertyLookup":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"searchYelp":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getYelpPage":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getYelpReviews":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getDepartmentSize":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"flightBookingPage":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"financialInstrumentLookup":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"emailToLinkedinMiss":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":0}]}},"talentFlow":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"leadListFromDomain":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":1000}]}},"fetchCompanyEmployee":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":400}]}},"getCompanyFromRankingList":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}}},"required":["getCompanyFromDb","getPersonFromDb","getCompanyCountFromDb","getJobPostingCountFromDb","getPersonCountFromDb","getInvestorFromDb","getInvestmentFromDb","getJobPostingFromDb","textToCompanySearchParams","textToPersonSearchParams","textToSearchParams","liveEnrichCompany","liveEnrichPerson","liveEnrichPersonForContactReveal","standardizeCompanySlug","standardizePersonSlug","workEmailReveal","personalEmailReveal","liteEmailReveal","litePhoneReveal","liteReverseEmailLookup","instantEmailReveal","instantPhoneReveal","allEmailReveal","phoneReveal","combinedReveal","validateEmail","validatePhone","emailToLinkedinUrl","kitchenSinkPerson","kitchenSinkCompany","salesNavCompanyScrape","salesNavPersonScrape","salesNavPersonScrapeWithoutLiveFetch","googleMapsScrape","geolocation","jobTitleRewrite","combinedEnrichment","domainLookupAgent","localBusinessResearchAgent","githubLookupAgent","getLiProfileFromGithubUsername","getEmailFromGithubUsername","socialMediaFinderAgent","bulkCompanyLogoLookup","bulkProfilePicLookup","getLiProfilePosts","getLiCompanyPosts","getLiPostComments","getLiPostReactions","getLiProfileComments","getLiProfileReactions","getLiProfileLatestActivities","getLiProfileLastActiveDate","getProfileLatestLiPost","getCompanyLatestLiPost","savedSearchCompany","savedSearchProspect","premiumWorkEmailReveal","premiumPersonalEmailReveal","premiumAllEmailReveal","premiumPhoneReveal","premiumCombinedReveal","exhaustiveWorkEmailReveal","exhaustivePersonalEmailReveal","exhaustiveAllEmailReveal","exhaustivePhoneReveal","exhaustiveCombinedReveal","getCompanyRevenue","multiSourceCompanySearch","multiSourcePersonSearch","scoutingReportCompany","scoutingReportPerson","trackPersonsJobChanges","youtubeVideoTranscript","youtubeVideoDetails","youtubeVideoComments","youtubeSearch","youtubeChannelDetails","socialUserDetails","socialUserPosts","socialUserFollowers","socialUserFollowing","socialPostDetails","socialPostReplies","socialPostQuotes","socialPostReposts","socialPostReactions","socialUserMentions","socialUserSearch","socialPostSearch","webpageScreenshot","webpageScrape","generateDepthChart","realEstateSearch","flightSearch","mosaicRow","getEntityFromDb","trackEntity","trackEntitySilver","trackEntityGold","trackEntityPlatinum","blueCollarJobSearch","getCompanyLayoffs","reversePhoneLookup","findCompanyLookalikes","findPersonLookalikes","hotelSearch","hotelPropertyLookup","searchYelp","getYelpPage","getYelpReviews","getDepartmentSize","flightBookingPage","financialInstrumentLookup","emailToLinkedinMiss","talentFlow","leadListFromDomain","fetchCompanyEmployee","getCompanyFromRankingList"]}},"required":["organizationId","subscriptionId","max","used","available","usagePeriodResetsOn"]}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/rate-limits":{"get":{"operationId":"getRateLimits","summary":"Get organization rate limits","tags":["Account"],"description":"Returns the effective rate limits for all API endpoints for your organization. If your organization has custom rate limits on any endpoint, those are reflected here.\n\n<span>⚡ <strong>Rate limit:</strong> 20 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":20,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"rateLimits":{"type":"array","items":{"type":"object","properties":{"method":{"type":"string","minLength":1,"description":"HTTP method (e.g. GET, POST)"},"path":{"type":"string","minLength":1,"description":"Route path (e.g. /v1/search/people)"},"max":{"type":"number","description":"Maximum number of requests allowed in the window"},"windowSeconds":{"type":["number","null"],"description":"Time window duration in seconds (e.g. 60), or null if unavailable"},"isCustom":{"type":"boolean","description":"Whether this rate limit is a custom override for your organization"}},"required":["method","path","max","windowSeconds","isCustom"]},"description":"Rate limits for all available API endpoints"}},"required":["rateLimits"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/auto-topup/settings":{"get":{"operationId":"getAutoTopupSettings","summary":"Get auto top-up settings","tags":["Account"],"description":"Get the organization's auto top-up configuration. When configured is false, no auto top-up settings exist yet.\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"settings":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"configured":{"type":"boolean","enum":[true]},"subscriptionId":{"type":"string","description":"The subscription these auto top-up settings belong to"},"isEnabled":{"type":"boolean","description":"Whether auto top-up is currently enabled for this organization"},"creditThreshold":{"type":"integer","exclusiveMinimum":0,"description":"Credit balance threshold below which auto top-up triggers"},"creditsToBuy":{"type":"integer","minimum":1000,"maximum":1000000,"description":"Number of credits purchased when auto top-up triggers"},"maxPerDay":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of auto top-ups allowed in a rolling 24-hour window. When reached, auto top-up pauses until the window passes. Leave as null to not enforce daily limit."},"maxPerMonth":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of auto top-ups allowed per calendar month (UTC). When reached, auto top-up pauses until the next calendar month. Leave as null to not enforce monthly limit."}},"required":["configured","subscriptionId","isEnabled","creditThreshold","creditsToBuy"]},{"type":"object","properties":{"configured":{"type":"boolean","enum":[false]},"subscriptionId":{"type":"string","description":"The subscription these auto top-up settings belong to"}},"required":["configured","subscriptionId"]}]},"description":"Auto top-up settings per subscription"}},"required":["settings"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/auto-topup/configure":{"post":{"operationId":"updateAutoTopupSettings","summary":"Update auto top-up settings","tags":["Account"],"description":"Update the organization's auto top-up configuration. Enabling auto top-up will automatically charge your organization's saved payment method via Stripe when your credit balance falls below the configured threshold. AI agents should confirm with a human operator before enabling this feature.\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"subscriptionId":{"type":"string","minLength":1,"description":"The subscription to configure auto top-up for. An organization can have multiple subscriptions, each with its own auto top-up settings."},"isEnabled":{"type":"boolean","description":"Whether auto top-up is enabled"},"creditThreshold":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Credit balance threshold below which auto top-up triggers. Required when isEnabled is true."},"creditsToBuy":{"type":["integer","null"],"minimum":1000,"maximum":1000000,"description":"Number of credits to purchase when auto top-up triggers. Required when isEnabled is true."},"maxPerDay":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of auto top-ups allowed in a rolling 24-hour window. Set to null to remove the daily limit."},"maxPerMonth":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of auto top-ups allowed per calendar month (UTC). When reached, auto top-up pauses until the next calendar month. Set to null to remove the monthly limit."}},"required":["apiKey","subscriptionId","isEnabled"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"oneOf":[{"type":"object","properties":{"configured":{"type":"boolean","enum":[true]},"subscriptionId":{"type":"string","description":"The subscription these auto top-up settings belong to"},"isEnabled":{"type":"boolean","description":"Whether auto top-up is currently enabled for this organization"},"creditThreshold":{"type":"integer","exclusiveMinimum":0,"description":"Credit balance threshold below which auto top-up triggers"},"creditsToBuy":{"type":"integer","minimum":1000,"maximum":1000000,"description":"Number of credits purchased when auto top-up triggers"},"maxPerDay":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of auto top-ups allowed in a rolling 24-hour window. When reached, auto top-up pauses until the window passes. Leave as null to not enforce daily limit."},"maxPerMonth":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of auto top-ups allowed per calendar month (UTC). When reached, auto top-up pauses until the next calendar month. Leave as null to not enforce monthly limit."}},"required":["configured","subscriptionId","isEnabled","creditThreshold","creditsToBuy"]},{"type":"object","properties":{"configured":{"type":"boolean","enum":[false]},"subscriptionId":{"type":"string","description":"The subscription these auto top-up settings belong to"}},"required":["configured","subscriptionId"]}]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/buy-credits":{"post":{"operationId":"buyCredits","summary":"Buy credits","tags":["Account"],"description":"Purchase additional credits for your organization. Saved-card purchases cost $20.00 per 1,000 credits on a subscription, or $30.00 per 1,000 credits on a pay-as-you-go plan. A one-time payment authorization charges the pay-as-you-go rate. This endpoint immediately charges real money. Confirm with a human operator before calling it from an agent.\n\n<span>⚡ <strong>Rate limit:</strong> 2 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"subscriptionId":{"type":["string","null"],"minLength":1,"description":"The subscription to add credits to. Required when the organization has more than one subscription, or when charging a saved payment method. Must be omitted when paying with a one-time payment authorization; sending both is rejected."},"creditsToBuy":{"type":"integer","minimum":100,"maximum":1000000,"description":"Number of credits to purchase. One-time payment authorizations require at least 100 credits. Saved-card purchases require at least 1,000 credits."},"sharedPaymentGrantedToken":{"type":["string","null"],"minLength":1,"description":"A one-time payment authorization from your payment provider. When set, this purchase charges that authorization instead of a saved card. Each purchase needs a freshly minted authorization."},"idempotencyKey":{"type":["string","null"],"minLength":1,"maxLength":255,"description":"A unique key to safely retry a purchase. If a request fails or times out, resend with the same key to avoid being charged twice. When omitted, each call is a new purchase."}},"required":["apiKey","creditsToBuy"]}}}},"x-rate-limit":{"max":2,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"message":{"type":"string"},"creditsPurchased":{"type":"integer","exclusiveMinimum":0},"centsSpent":{"type":"integer","minimum":0,"description":"Total amount charged in US cents for this purchase"}},"required":["message","creditsPurchased","centsSpent"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"declineCode":{"type":["string","null"],"description":"Why the payment was declined, when the reason is known — for example 'insufficient_funds' or 'expired_card'."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/cards/attach":{"post":{"operationId":"cardsAttach","summary":"Attach card to trial account","tags":["Account"],"description":"Attach a payment card to a cardless trial organization using a single-use Stripe shared payment token. The card is verified with a temporary $1 authorization that is refunded immediately (net cost $0), and the organization's free-credit ceiling is raised. The verified card is not saved for future charges — every future paid top-up requires a freshly-minted shared payment token.\n\n<span>⚡ <strong>Rate limit:</strong> 3 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"sharedPaymentGrantedToken":{"type":"string","pattern":"^spt_","minLength":1,"description":"Single-use Stripe shared payment token (`spt_...`) authorizing exactly one card handoff. Mint it on the buyer side (see https://docs.stripe.com/agentic-commerce/concepts/shared-payment-tokens); each request must submit a freshly-minted token."}},"required":["apiKey","sharedPaymentGrantedToken"]}}}},"x-rate-limit":{"max":3,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["attached"]},"creditsGranted":{"type":"integer","description":"Additional free trial credits granted by this call. Zero when the organization was already at its trial credit ceiling (e.g. re-attaching after the ceiling was already reached)."},"totalCreditsUnlocked":{"type":"integer","description":"Free trial credit ceiling after this call — the maximum credits the organization can spend on the trial before it needs a paid top-up."},"paymentMethod":{"type":"object","properties":{"brand":{"type":["string","null"],"description":"Card network (e.g. 'visa', 'mastercard'). Null when unavailable."},"last4":{"type":["string","null"],"description":"Last four digits of the card. Null when unavailable."}},"description":"Display-only metadata for the card that was verified in this call. This is not a saved payment method — future paid top-ups must submit a freshly-minted shared payment token."}},"required":["status","creditsGranted","totalCreditsUnlocked","paymentMethod"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"anyOf":[{"type":"object","properties":{"status":{"type":"string","enum":["rejected"]},"reason":{"type":"string","enum":["org_not_found","already_attached","attach_in_progress","not_cardless_trial","trial_ended","spt_invalid","card_declined","rate_limited","service_unavailable","payment_provider_error","internal_error","billing_profile_conflict"]},"message":{"type":"string"}},"required":["status","reason","message"]},{"type":"object","properties":{"message":{"type":"string"}},"required":["message"]}]}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string","enum":["rejected"]},"reason":{"type":"string","enum":["org_not_found","already_attached","attach_in_progress","not_cardless_trial","trial_ended","spt_invalid","card_declined","rate_limited","service_unavailable","payment_provider_error","internal_error","billing_profile_conflict"]},"message":{"type":"string"}},"required":["status","reason","message"]}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string","enum":["rejected"]},"reason":{"type":"string","enum":["org_not_found","already_attached","attach_in_progress","not_cardless_trial","trial_ended","spt_invalid","card_declined","rate_limited","service_unavailable","payment_provider_error","internal_error","billing_profile_conflict"]},"message":{"type":"string"}},"required":["status","reason","message"]}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string","enum":["rejected"]},"reason":{"type":"string","enum":["org_not_found","already_attached","attach_in_progress","not_cardless_trial","trial_ended","spt_invalid","card_declined","rate_limited","service_unavailable","payment_provider_error","internal_error","billing_profile_conflict"]},"message":{"type":"string"}},"required":["status","reason","message"]}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"anyOf":[{"type":"object","properties":{"status":{"type":"string","enum":["rejected"]},"reason":{"type":"string","enum":["org_not_found","already_attached","attach_in_progress","not_cardless_trial","trial_ended","spt_invalid","card_declined","rate_limited","service_unavailable","payment_provider_error","internal_error","billing_profile_conflict"]},"message":{"type":"string"}},"required":["status","reason","message"]},{"type":"object","properties":{"message":{"type":"string"}},"required":["message"]}]}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"anyOf":[{"type":"object","properties":{"status":{"type":"string","enum":["rejected"]},"reason":{"type":"string","enum":["org_not_found","already_attached","attach_in_progress","not_cardless_trial","trial_ended","spt_invalid","card_declined","rate_limited","service_unavailable","payment_provider_error","internal_error","billing_profile_conflict"]},"message":{"type":"string"}},"required":["status","reason","message"]},{"type":"object","properties":{"message":{"type":"string"}},"required":["message"]}]}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/api-keys":{"post":{"operationId":"getAllApiKeys","summary":"List API keys","tags":["API key"],"description":"List all API keys for your organization, including each key's name, prefix, expiration, and per-key credit usage. The secret value of a key is only shown once at creation and is never returned here. First-time users: create your initial API key at https://app.fiber.ai or via POST /v1/account/send-otp + verify-otp. This endpoint manages keys once you have one.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"includeRevoked":{"type":"boolean","default":false,"description":"Include revoked keys in the results. Defaults to false, returning only active keys."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"apiKeys":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"id of your api key. This or prefix can be used to identify the key."},"name":{"type":"string","description":"Name of your api key."},"prefix":{"type":"string","description":"Non secret prefix of your api key. Used for identification."},"expiresAt":{"type":["string","null"],"format":"date-time","description":"When the key expires. Null implies key never expires."},"maxCredits":{"type":["number","null"],"minimum":0,"description":"The lifetime credit ceiling for this key. Null implies key has no per-key credit limit."},"creditsUsed":{"type":"number","minimum":0,"description":"Credits consumed by this key so far over its lifetime."},"createdAt":{"type":"string","format":"date-time","description":"When the key was created, as an ISO 8601 timestamp."},"isRevoked":{"type":"boolean","description":"Whether the key has been revoked. Revoked keys can no longer authenticate. Only ever true in listings that include revoked keys."}},"required":["id","name","prefix","expiresAt","maxCredits","creditsUsed","createdAt","isRevoked"]},"description":"Every API key belonging to your organization."}},"required":["apiKeys"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/api-keys/current":{"post":{"operationId":"getCurrentApiKey","summary":"Get API key","tags":["API key"],"description":"Return details about an API key, including its name, prefix, expiration, and per-key credit usage. Acts on the key that authenticates this request unless target is OTHER. First-time users: create your initial API key at https://app.fiber.ai or via POST /v1/account/send-otp + verify-otp. This endpoint manages keys once you have one.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"target":{"type":"string","enum":["SELF","OTHER"],"default":"SELF","description":"Which key to act on. SELF acts on the key that authenticates this request. OTHER acts on a different key in your organization, supplied in targetApiKey."},"targetApiKey":{"type":["string","null"],"minLength":1,"description":"The key to act on when target is OTHER. Must belong to your organization. You can pass prefix, id, or the raw key. Omit when target is SELF."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"id of your api key. This or prefix can be used to identify the key."},"name":{"type":"string","description":"Name of your api key."},"prefix":{"type":"string","description":"Non secret prefix of your api key. Used for identification."},"expiresAt":{"type":["string","null"],"format":"date-time","description":"When the key expires. Null implies key never expires."},"maxCredits":{"type":["number","null"],"minimum":0,"description":"The lifetime credit ceiling for this key. Null implies key has no per-key credit limit."},"creditsUsed":{"type":"number","minimum":0,"description":"Credits consumed by this key so far over its lifetime."},"createdAt":{"type":"string","format":"date-time","description":"When the key was created, as an ISO 8601 timestamp."},"isRevoked":{"type":"boolean","description":"Whether the key has been revoked. Revoked keys can no longer authenticate. Only ever true in listings that include revoked keys."}},"required":["id","name","prefix","expiresAt","maxCredits","creditsUsed","createdAt","isRevoked"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/api-keys/expiration":{"post":{"operationId":"updateApiKeyExpiration","summary":"Update API key expiration","tags":["API key"],"description":"Change the expiration of an API key. Acts on the key that authenticates this request unless target is OTHER. Choose set to pin an absolute date, extend or prepone to move the date by a number of days, or remove to make the key never expire. Once a key expires it can no longer authenticate. First-time users: create your initial API key at https://app.fiber.ai or via POST /v1/account/send-otp + verify-otp. This endpoint manages keys once you have one.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"target":{"type":"string","enum":["SELF","OTHER"],"default":"SELF","description":"Which key to act on. SELF acts on the key that authenticates this request. OTHER acts on a different key in your organization, supplied in targetApiKey."},"targetApiKey":{"type":["string","null"],"minLength":1,"description":"The key to act on when target is OTHER. Must belong to your organization. You can pass prefix, id, or the raw key. Omit when target is SELF."},"operation":{"type":"string","enum":["set","extend","prepone","remove"],"description":"set: use an absolute date. extend: push the expiration later by a number of days. prepone: pull it earlier by a number of days. remove: make the key never expire."},"expiresAt":{"type":["string","null"],"format":"date-time","description":"The new absolute expiration timestamp (ISO 8601). Required for the set operation and must be in the future; ignored otherwise."},"days":{"type":["integer","null"],"exclusiveMinimum":0,"description":"How many days to move the expiration by. Required for the extend and prepone operations; ignored otherwise."}},"required":["apiKey","operation"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"id of your api key. This or prefix can be used to identify the key."},"name":{"type":"string","description":"Name of your api key."},"prefix":{"type":"string","description":"Non secret prefix of your api key. Used for identification."},"expiresAt":{"type":["string","null"],"format":"date-time","description":"When the key expires. Null implies key never expires."},"maxCredits":{"type":["number","null"],"minimum":0,"description":"The lifetime credit ceiling for this key. Null implies key has no per-key credit limit."},"creditsUsed":{"type":"number","minimum":0,"description":"Credits consumed by this key so far over its lifetime."},"createdAt":{"type":"string","format":"date-time","description":"When the key was created, as an ISO 8601 timestamp."},"isRevoked":{"type":"boolean","description":"Whether the key has been revoked. Revoked keys can no longer authenticate. Only ever true in listings that include revoked keys."}},"required":["id","name","prefix","expiresAt","maxCredits","creditsUsed","createdAt","isRevoked"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/api-keys/revoke":{"post":{"operationId":"revokeCurrentApiKey","summary":"Revoke API key","tags":["API key"],"description":"Permanently revoke an API key. Acts on the key that authenticates this request unless target is OTHER. The key stops working immediately and cannot be restored. Create a replacement sandbox key via POST /v1/api-keys/create-sandbox, or a live key from the dashboard, before revoking a key that is still in use. First-time users: create your initial API key at https://app.fiber.ai or via POST /v1/account/send-otp + verify-otp. This endpoint manages keys once you have one.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"target":{"type":"string","enum":["SELF","OTHER"],"default":"SELF","description":"Which key to act on. SELF acts on the key that authenticates this request. OTHER acts on a different key in your organization, supplied in targetApiKey."},"targetApiKey":{"type":["string","null"],"minLength":1,"description":"The key to act on when target is OTHER. Must belong to your organization. You can pass prefix, id, or the raw key. Omit when target is SELF."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"revoked":{"type":"boolean","description":"Revocation status of the key."},"id":{"type":"string","description":"The identifier of the revoked key."}},"required":["revoked","id"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/api-keys/limit":{"post":{"operationId":"updateApiKeyLimit","summary":"Update API key credit limit","tags":["API key"],"description":"Change the lifetime credit ceiling of an API key. Acts on the key that authenticates this request unless target is OTHER. Use set to pin an absolute limit, increase or decrease to adjust it by a number of credits, multiply or divide to scale it, or remove to make the key unlimited. Once a key's usage reaches its limit it can no longer authenticate until the limit is raised or removed. First-time users: create your initial API key at https://app.fiber.ai or via POST /v1/account/send-otp + verify-otp. This endpoint manages keys once you have one.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"target":{"type":"string","enum":["SELF","OTHER"],"default":"SELF","description":"Which key to act on. SELF acts on the key that authenticates this request. OTHER acts on a different key in your organization, supplied in targetApiKey."},"targetApiKey":{"type":["string","null"],"minLength":1,"description":"The key to act on when target is OTHER. Must belong to your organization. You can pass prefix, id, or the raw key. Omit when target is SELF."},"operation":{"type":"string","enum":["set","increase","decrease","multiply","divide","remove"],"description":"set: pin an absolute credit ceiling. increase/decrease: adjust the current ceiling by a number of credits. multiply/divide: scale the current ceiling by a factor. remove: make the key unlimited. increase, decrease, multiply, and divide have no effect on an already-unlimited key; use set to establish a ceiling first."},"credits":{"type":["number","null"],"minimum":0,"description":"The credit amount. Required for set (zero or greater), increase, and decrease (greater than zero); ignored otherwise."},"factor":{"type":["number","null"],"exclusiveMinimum":0,"description":"The factor to scale the current ceiling by. Required for multiply and divide; ignored otherwise."}},"required":["apiKey","operation"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"id of your api key. This or prefix can be used to identify the key."},"name":{"type":"string","description":"Name of your api key."},"prefix":{"type":"string","description":"Non secret prefix of your api key. Used for identification."},"expiresAt":{"type":["string","null"],"format":"date-time","description":"When the key expires. Null implies key never expires."},"maxCredits":{"type":["number","null"],"minimum":0,"description":"The lifetime credit ceiling for this key. Null implies key has no per-key credit limit."},"creditsUsed":{"type":"number","minimum":0,"description":"Credits consumed by this key so far over its lifetime."},"createdAt":{"type":"string","format":"date-time","description":"When the key was created, as an ISO 8601 timestamp."},"isRevoked":{"type":"boolean","description":"Whether the key has been revoked. Revoked keys can no longer authenticate. Only ever true in listings that include revoked keys."}},"required":["id","name","prefix","expiresAt","maxCredits","creditsUsed","createdAt","isRevoked"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/api-keys/usage/reset":{"post":{"operationId":"resetApiKeyUsage","summary":"Reset API key usage","tags":["API key"],"description":"Reset an API key's lifetime usage back to zero. Acts on the key that authenticates this request unless target is OTHER. Use this after raising a key's limit, or to give a key a fresh allowance without changing its ceiling. First-time users: create your initial API key at https://app.fiber.ai or via POST /v1/account/send-otp + verify-otp. This endpoint manages keys once you have one.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"target":{"type":"string","enum":["SELF","OTHER"],"default":"SELF","description":"Which key to act on. SELF acts on the key that authenticates this request. OTHER acts on a different key in your organization, supplied in targetApiKey."},"targetApiKey":{"type":["string","null"],"minLength":1,"description":"The key to act on when target is OTHER. Must belong to your organization. You can pass prefix, id, or the raw key. Omit when target is SELF."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"id of your api key. This or prefix can be used to identify the key."},"name":{"type":"string","description":"Name of your api key."},"prefix":{"type":"string","description":"Non secret prefix of your api key. Used for identification."},"expiresAt":{"type":["string","null"],"format":"date-time","description":"When the key expires. Null implies key never expires."},"maxCredits":{"type":["number","null"],"minimum":0,"description":"The lifetime credit ceiling for this key. Null implies key has no per-key credit limit."},"creditsUsed":{"type":"number","minimum":0,"description":"Credits consumed by this key so far over its lifetime."},"createdAt":{"type":"string","format":"date-time","description":"When the key was created, as an ISO 8601 timestamp."},"isRevoked":{"type":"boolean","description":"Whether the key has been revoked. Revoked keys can no longer authenticate. Only ever true in listings that include revoked keys."}},"required":["id","name","prefix","expiresAt","maxCredits","creditsUsed","createdAt","isRevoked"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/api-keys/create-sandbox":{"post":{"operationId":"createSandboxApiKey","summary":"Create sandbox API key","tags":["API key"],"description":"Create a sandbox API key (`sk_test_...`) for local development, CI, and integration tests. Sandbox keys never charge credits. The plaintext secret is returned once and cannot be retrieved later. Live keys cannot be created from the API — create those at https://app.fiber.ai. First-time users without any key yet: sign up at https://fiber.ai or via POST /v1/account/send-otp + verify-otp.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","minLength":1,"maxLength":100,"description":"Human-readable label to identify this key later (e.g. 'CI runner', 'local dev')."}},"required":["apiKey","name"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"id of your api key. This or prefix can be used to identify the key."},"name":{"type":"string","description":"Name of your api key."},"prefix":{"type":"string","description":"Non secret prefix of your api key. Used for identification."},"expiresAt":{"type":["string","null"],"format":"date-time","description":"When the key expires. Null implies key never expires."},"maxCredits":{"type":["number","null"],"minimum":0,"description":"The lifetime credit ceiling for this key. Null implies key has no per-key credit limit."},"creditsUsed":{"type":"number","minimum":0,"description":"Credits consumed by this key so far over its lifetime."},"createdAt":{"type":"string","format":"date-time","description":"When the key was created, as an ISO 8601 timestamp."},"isRevoked":{"type":"boolean","description":"Whether the key has been revoked. Revoked keys can no longer authenticate. Only ever true in listings that include revoked keys."},"apiKey":{"type":"string","description":"The plaintext sandbox API key (starts with sk_test_). Shown once — store it securely, it cannot be retrieved later."}},"required":["id","name","prefix","expiresAt","maxCredits","creditsUsed","createdAt","isRevoked","apiKey"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/api-requests":{"post":{"operationId":"listApiRequests","summary":"List your past API requests","tags":["API requests"],"description":"List the API requests your organization has made, newest first, with the parameters you sent and how each call turned out. Use it to answer 'what did my agent actually run?' — debugging a failed run, auditing usage, or quoting an `errorCode` in a support request. Filter by time range, route, method, status code, or error code, and page through results with `cursor`. History is retained for 7 days; anything older has been purged. Response bodies are not returned — only the request side of each call.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"from":{"type":["string","null"],"format":"date-time","description":"Only return requests received at or after this ISO 8601 timestamp. Logs are retained for 7 days, so earlier timestamps simply return nothing."},"to":{"type":["string","null"],"format":"date-time","description":"Only return requests received strictly before this ISO 8601 timestamp."},"routePath":{"type":["string","null"],"description":"Only return requests to this exact route template, e.g. \"/v1/person/search\"."},"method":{"type":["string","null"],"description":"Only return requests using this HTTP method, e.g. \"POST\"."},"statusCode":{"type":["integer","null"],"description":"Only return requests that returned this exact status code."},"errorCode":{"type":["string","null"],"description":"Only return the request carrying this error correlation code."},"cursor":{"type":["string","null"],"description":"The cursor from where to start fetching the next page of results. Provide the `nextCursor` from the previous response to continue from there. Keep the same filters as the call that produced the cursor — reusing a cursor while changing filters silently skips rows."},"pageSize":{"type":"integer","minimum":1,"maximum":100,"default":25,"description":"The number of results to fetch per page."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"apiRequests":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Unique id of this logged request. Quote it in support requests to identify a specific call."},"organizationId":{"type":"string","description":"Your organization's id."},"createdAt":{"type":"string","format":"date-time","description":"When the request was received, as an ISO 8601 timestamp."},"method":{"type":"string","description":"HTTP method, e.g. \"POST\"."},"routePath":{"type":"string","description":"The route template that handled the request, e.g. \"/v1/person/search\""},"statusCode":{"type":"integer","description":"HTTP status code returned to you."},"durationMs":{"type":["integer","null"],"description":"How long the request took to process, in milliseconds, measured from receipt to just before the response was written."},"errorCode":{"type":["string","null"],"description":"Correlation code included in the response body when a request fails. Quote it in support requests."},"request":{"description":"The input you sent with this call."}},"required":["id","organizationId","createdAt","method","routePath","statusCode"]},"description":"Your past API requests, newest first."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page of results. Null if there are no more results."},"hasMore":{"type":"boolean","description":"Whether there are more results to fetch."},"retentionDays":{"type":"integer","description":"How many days of request history are retained. Requests older than this have been purged and cannot be returned."}},"required":["apiRequests","hasMore","retentionDays"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/webhooks/event-types":{"get":{"operationId":"listWebhookEventTypes","summary":"List webhook event types","tags":["Webhooks"],"description":"List every event type you can subscribe a webhook endpoint to. Each entry includes a description of when the event fires and an example payload so you can build and test your receiver before creating an endpoint.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"eventTypes":{"type":"array","items":{"type":"object","properties":{"eventType":{"type":"string","description":"The event type identifier you subscribe to."},"description":{"type":"string","description":"What this event represents and when it fires."},"group":{"type":"string","description":"The category this event belongs to."},"examplePayload":{"type":"object","additionalProperties":{},"description":"An example payload delivered for this event type."}},"required":["eventType","description","group","examplePayload"]},"description":"All event types you can subscribe a webhook endpoint to."}},"required":["eventTypes"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/webhooks/endpoints":{"post":{"operationId":"createWebhookEndpoint","summary":"Create webhook endpoint","tags":["Webhooks"],"description":"Create a webhook endpoint that receives event payloads at the URL you provide. Returns the endpoint along with its signing secret — store the secret securely, as it is only shown here and when rotated. Setting up webhooks is free.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"url":{"type":"string","format":"uri","pattern":"^https://","description":"The HTTPS URL that will receive event payloads, e.g. 'https://api.example.com/webhooks/fiber'."},"eventTypes":{"type":"array","items":{"type":"string","enum":["reveal.completed","saved_search.run_completed","saved_search.run_upcoming","job.changed","batch_live_enrich.completed","batch_contact_enrich.completed","batch_contact_enrich_v1.completed","github_to_linkedin.completed","github_lookup.completed","domain_lookup.completed","social_media_lookup.completed","google_maps_search.completed","local_business_search.completed","depth_chart.completed","audience.enrichment_completed","audience.prospect_export_completed","audience.company_export_completed","audience.build_completed","combined_search.completed","sales_nav_scrape.completed","sales_nav_lite_scrape.completed","job_changes.profiles_added","tracker.signal_detected","tracker.list_run_completed","tracker.list_run_upcoming","mosaic.completed"]},"minItems":1,"description":"The event types to subscribe this endpoint to. Retrieve the full list of available event types from the webhook event types endpoint."},"description":{"type":["string","null"],"minLength":1,"description":"An optional human-readable label for this endpoint."}},"required":["apiKey","url","eventTypes"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"endpointId":{"type":"string","description":"The unique ID of this webhook endpoint."},"url":{"type":"string","description":"The HTTPS URL that receives event payloads."},"eventTypes":{"type":"array","items":{"type":"string"},"description":"The event types this endpoint is subscribed to. An empty array means the endpoint receives every event type; endpoints created through this API are always subscribed to one or more specific event types."},"description":{"type":["string","null"],"description":"An optional human-readable label for this endpoint."},"disabled":{"type":"boolean","description":"Whether delivery to this endpoint is currently paused."},"createdAt":{"type":"string","description":"When the endpoint was created (ISO 8601)."},"updatedAt":{"type":"string","description":"When the endpoint was last updated (ISO 8601)."},"signingSecret":{"type":"string","description":"The secret used to verify payload signatures. Store it securely — it is only returned when the endpoint is created or its secret is rotated."}},"required":["endpointId","url","eventTypes","disabled","createdAt","updatedAt","signingSecret"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"get":{"operationId":"listWebhookEndpoints","summary":"List webhook endpoints","tags":["Webhooks"],"description":"List every webhook endpoint configured for your organization, including each endpoint's delivery URL, subscribed event types, and paused state. Reading webhook endpoints is free.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"endpoints":{"type":"array","items":{"type":"object","properties":{"endpointId":{"type":"string","description":"The unique ID of this webhook endpoint."},"url":{"type":"string","description":"The HTTPS URL that receives event payloads."},"eventTypes":{"type":"array","items":{"type":"string"},"description":"The event types this endpoint is subscribed to. An empty array means the endpoint receives every event type; endpoints created through this API are always subscribed to one or more specific event types."},"description":{"type":["string","null"],"description":"An optional human-readable label for this endpoint."},"disabled":{"type":"boolean","description":"Whether delivery to this endpoint is currently paused."},"createdAt":{"type":"string","description":"When the endpoint was created (ISO 8601)."},"updatedAt":{"type":"string","description":"When the endpoint was last updated (ISO 8601)."}},"required":["endpointId","url","eventTypes","disabled","createdAt","updatedAt"]},"description":"Your configured webhook endpoints."}},"required":["endpoints"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/webhooks/endpoints/{endpointId}":{"get":{"operationId":"getWebhookEndpoint","summary":"Get webhook endpoint","tags":["Webhooks"],"description":"Return a single webhook endpoint's configuration: its delivery URL, the event types it is subscribed to, and whether delivery is currently paused. Reading webhook endpoints is free.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"endpointId","required":true,"description":"The unique ID of the webhook endpoint."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"endpointId":{"type":"string","description":"The unique ID of this webhook endpoint."},"url":{"type":"string","description":"The HTTPS URL that receives event payloads."},"eventTypes":{"type":"array","items":{"type":"string"},"description":"The event types this endpoint is subscribed to. An empty array means the endpoint receives every event type; endpoints created through this API are always subscribed to one or more specific event types."},"description":{"type":["string","null"],"description":"An optional human-readable label for this endpoint."},"disabled":{"type":"boolean","description":"Whether delivery to this endpoint is currently paused."},"createdAt":{"type":"string","description":"When the endpoint was created (ISO 8601)."},"updatedAt":{"type":"string","description":"When the endpoint was last updated (ISO 8601)."}},"required":["endpointId","url","eventTypes","disabled","createdAt","updatedAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"patch":{"operationId":"updateWebhookEndpoint","summary":"Update webhook endpoint","tags":["Webhooks"],"description":"Update a webhook endpoint. Change its URL, replace the event types it is subscribed to, update its description, or pause and resume delivery. Only the fields you provide are changed. Updating webhooks is free.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"url":{"type":["string","null"],"format":"uri","pattern":"^https://","description":"A new HTTPS URL to receive event payloads."},"eventTypes":{"type":["array","null"],"items":{"type":"string","enum":["reveal.completed","saved_search.run_completed","saved_search.run_upcoming","job.changed","batch_live_enrich.completed","batch_contact_enrich.completed","batch_contact_enrich_v1.completed","github_to_linkedin.completed","github_lookup.completed","domain_lookup.completed","social_media_lookup.completed","google_maps_search.completed","local_business_search.completed","depth_chart.completed","audience.enrichment_completed","audience.prospect_export_completed","audience.company_export_completed","audience.build_completed","combined_search.completed","sales_nav_scrape.completed","sales_nav_lite_scrape.completed","job_changes.profiles_added","tracker.signal_detected","tracker.list_run_completed","tracker.list_run_upcoming","mosaic.completed"]},"minItems":1,"description":"A new set of event types to subscribe this endpoint to."},"description":{"type":["string","null"],"minLength":1,"description":"A new human-readable label for this endpoint."},"disabled":{"type":["boolean","null"],"description":"Set to true to pause delivery, or false to resume it."}},"required":["apiKey"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"endpointId","required":true,"description":"The unique ID of the webhook endpoint."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"endpointId":{"type":"string","description":"The unique ID of this webhook endpoint."},"url":{"type":"string","description":"The HTTPS URL that receives event payloads."},"eventTypes":{"type":"array","items":{"type":"string"},"description":"The event types this endpoint is subscribed to. An empty array means the endpoint receives every event type; endpoints created through this API are always subscribed to one or more specific event types."},"description":{"type":["string","null"],"description":"An optional human-readable label for this endpoint."},"disabled":{"type":"boolean","description":"Whether delivery to this endpoint is currently paused."},"createdAt":{"type":"string","description":"When the endpoint was created (ISO 8601)."},"updatedAt":{"type":"string","description":"When the endpoint was last updated (ISO 8601)."}},"required":["endpointId","url","eventTypes","disabled","createdAt","updatedAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"delete":{"operationId":"deleteWebhookEndpoint","summary":"Delete webhook endpoint","tags":["Webhooks"],"description":"Delete a webhook endpoint. All future event deliveries to its URL stop immediately. Deleting webhooks is free.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"endpointId","required":true,"description":"The unique ID of the webhook endpoint."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"endpointId":{"type":"string","description":"The ID of the deleted webhook endpoint."},"deleted":{"type":"boolean","description":"Always true when the endpoint was deleted.","enum":[true]}},"required":["endpointId","deleted"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/webhooks/endpoints/{endpointId}/rotate-secret":{"post":{"operationId":"rotateWebhookEndpointSecret","summary":"Rotate webhook signing secret","tags":["Webhooks"],"description":"Rotate a webhook endpoint's signing secret and return the new value. The previous secret stays valid for a 24-hour grace period so in-flight deliveries keep verifying — roll the new secret out to your receiver within that window. Rotating secrets is free.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"}},"required":["apiKey"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"endpointId","required":true,"description":"The unique ID of the webhook endpoint."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"endpointId":{"type":"string","description":"The ID of the webhook endpoint whose secret was rotated."},"signingSecret":{"type":"string","description":"The new signing secret. Store it securely — it will not be shown again."}},"required":["endpointId","signingSecret"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/webhooks/endpoints/{endpointId}/test-event":{"post":{"operationId":"sendTestWebhookEvent","summary":"Send test webhook event","tags":["Webhooks"],"description":"Send an example payload of the given event type to a single webhook endpoint. Use this to verify your receiver accepts deliveries and parses payloads correctly before relying on real events. Sending test events is free.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"eventType":{"type":"string","enum":["reveal.completed","saved_search.run_completed","saved_search.run_upcoming","job.changed","batch_live_enrich.completed","batch_contact_enrich.completed","batch_contact_enrich_v1.completed","github_to_linkedin.completed","github_lookup.completed","domain_lookup.completed","social_media_lookup.completed","google_maps_search.completed","local_business_search.completed","depth_chart.completed","audience.enrichment_completed","audience.prospect_export_completed","audience.company_export_completed","audience.build_completed","combined_search.completed","sales_nav_scrape.completed","sales_nav_lite_scrape.completed","job_changes.profiles_added","tracker.signal_detected","tracker.list_run_completed","tracker.list_run_upcoming","mosaic.completed"],"description":"The event type to send an example payload for. Retrieve available event types from the webhook event types endpoint."}},"required":["apiKey","eventType"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"endpointId","required":true,"description":"The unique ID of the webhook endpoint."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"endpointId":{"type":"string","description":"The ID of the endpoint the test event was sent to."},"eventType":{"type":"string","description":"The event type of the test event."},"messageId":{"type":"string","description":"The ID of the test message, useful for tracing the delivery."}},"required":["endpointId","eventType","messageId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/account/send-otp":{"post":{"operationId":"accountSendOtp","summary":"Start signup (send OTP)","tags":["Account"],"description":"Step 1 of signup. No API key is required. Send a one-time verification code to a work email to start a Fiber API trial. Optional firstName, lastName, and companyName are stored and used when the account is created. After the code arrives, call POST /v1/account/verify-otp with the returned verificationId and the code from email. That completes signup and returns your live API key (and a sandbox key when minted).\n\n<span>⚡ <strong>Rate limit:</strong> 6 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"email":{"type":"string","minLength":1,"description":"Work email to start signup. A one-time code is sent here; pass it to POST /v1/account/verify-otp with the returned verificationId."},"purpose":{"type":"string","enum":["agent-api","slushie"],"description":"Which product surface this trial is for. Defaults to agent-api for backward compatibility.","default":"agent-api"},"firstName":{"type":["string","null"],"minLength":1,"maxLength":50,"description":"Optional first name for the account. When omitted, derived from the email local-part."},"lastName":{"type":["string","null"],"minLength":1,"maxLength":50,"description":"Optional last name for the account. When omitted, a default value is used."},"companyName":{"type":["string","null"],"minLength":1,"maxLength":100,"description":"Optional organization display name. When omitted, derived from the email local-part."}},"required":["email"]}}}},"x-rate-limit":{"max":6,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["otp_sent"]},"verificationId":{"type":"string","description":"Pass this unchanged to POST /v1/account/verify-otp."},"message":{"type":"string"},"next":{"type":"object","properties":{"method":{"type":"string","enum":["POST"]},"path":{"type":"string","description":"Call this endpoint with the OTP from email to finish signup.","enum":["/v1/account/verify-otp"]},"body":{"type":"object","properties":{"verificationId":{"type":"string","description":"Same verificationId returned in this response."},"otp":{"type":"string","description":"Replace with the one-time code delivered to the email inbox."}},"required":["verificationId","otp"]}},"required":["method","path","body"],"description":"Next request an agent or client should make after reading the OTP from email."}},"required":["status","verificationId","message","next"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"410":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/account/verify-otp":{"post":{"operationId":"accountVerifyOtp","summary":"Complete signup (verify OTP)","tags":["Account"],"description":"Step 2 of signup. Completes the flow started by POST /v1/account/send-otp. Pass the verificationId from that response and the one-time code from email. On success this creates the trial account and returns a live API key (sk_live_...) plus a companion sandbox API key (sk_test_...) when one was minted. Store both securely — they cannot be retrieved later. First-time users without a key yet must start at send-otp; existing users create extra sandbox keys via POST /v1/api-keys/create-sandbox.\n\n<span>⚡ <strong>Rate limit:</strong> 12 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"verificationId":{"type":"string","minLength":1,"description":"The verification identifier returned by send-otp."},"otp":{"type":"string","minLength":1,"description":"The one-time code delivered by email."}},"required":["verificationId","otp"]}}}},"x-rate-limit":{"max":12,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["created"]},"apiKey":{"type":"string","description":"The live API key for the new trial organization (starts with sk_live_). Store it securely — it cannot be retrieved later."},"sandboxApiKey":{"type":["string","null"],"description":"Companion sandbox API key (starts with sk_test_...) for local development and integration tests. Null if it was not minted at signup — create one via POST /v1/api-keys/create-sandbox."},"creditsAwarded":{"type":"integer","minimum":0,"description":"Number of credits granted with this trial."},"organizationId":{"type":"string"},"message":{"type":"string"}},"required":["status","apiKey","creditsAwarded","organizationId","message"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"410":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/exhaustive/poll":{"post":{"operationId":"pollExhaustiveContactEnrichmentResult","summary":"Poll exhaustive contact details reveal result","tags":["Contact details"],"description":"Polls the status of an exhaustive contact reveal task. Pass the task ID returned by /contact-details/exhaustive/start. This is intentionally slow (completion typically takes approximately 4–8 minutes), as we run multiple enrichment sources in parallel to maximize yield. Do NOT use this in time-sensitive applications -- try any of our other contact detail grabbing endpoints instead. Returns the current status and, once complete, the full set of discovered emails and phone numbers. Includes both high-quality emails and low-quality emails (risky/undeliverable). Low-quality emails failed our internal validation checks and should be filtered out before use, but are included for transparency.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"taskId":{"type":"string","minLength":1,"description":"Task ID from the \"start exhaustive contact enrichment\" endpoint"}},"required":["apiKey","taskId"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profile":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string","enum":["work","personal","other","unknown","generic"]},"status":{"type":"string","enum":["valid","risky","unknown","invalid"]}},"required":["email","type"]}},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string","enum":["mobile","other","unknown"]}},"required":["number","type"]}},"status":{"type":"string","enum":["started","live-enriching","grabbing-contact-info","completed","failed"]},"error":{"type":"string"},"exhaustive":{"type":["boolean","null"]},"lowQualityEmails":{"type":["array","null"],"items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string","enum":["work","personal","other","unknown","generic"]},"status":{"type":"string","enum":["valid","risky","unknown","invalid"]}},"required":["email","type"]},"description":"Emails that failed internal validation checks (risky or undeliverable). These are included for transparency but should be filtered out before use."}},"required":["emails","phoneNumbers","status"]},"done":{"type":"boolean","description":"Whether the enrichment is completed or not."}},"required":["profile","done"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/depth-chart/poll":{"post":{"operationId":"pollDepthChart","summary":"Poll depth chart generation result","tags":["Company info"],"description":"Retrieves the employee breakdown started by the `depth-chart/start` endpoint. Pass the report ID you received when you started the report. Returns the current status and, once complete, numerical counts of employees grouped by department, seniority, or both, plus a printable markdown summary in tabular format — useful for CLI output or for LLMs building reports. Returns summary stats per bucket, not the individual people in each bucket.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"reportId":{"type":"string","minLength":1,"description":"Report ID returned by the /depth-chart/start endpoint"}},"required":["apiKey","reportId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","description":"Report is still being generated","enum":["pending"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","description":"Report generation succeeded","enum":["completed"]},"report":{"type":"object","properties":{"reportId":{"type":"string","description":"Unique identifier for this report"},"companyInfo":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Company name"},"linkedinUrl":{"type":["string","null"],"description":"Full LinkedIn company profile URL"},"linkedinOrgId":{"type":["string","null"],"description":"LinkedIn organization ID for the company"},"domain":{"type":["string","null"],"description":"Company primary domain"}},"description":"Company identification details"},"totalEmployees":{"type":"number","description":"Total employees at the company (official headcount when available, otherwise the classified count)"},"classifiedEmployees":{"type":"number","description":"Number of employees categorized in this depth chart. Bucket counts sum to this value."},"categorizationNote":{"type":["string","null"],"description":"Explanation when the company is too large to categorize every employee in full"},"averageTenureMonths":{"type":["number","null"],"description":"Overall average tenure in months across all employees"},"buckets":{"type":"array","items":{"type":"object","properties":{"function":{"type":"string","description":"Functional area (e.g. Engineering, Sales/GTM, Marketing, Product)"},"seniority":{"type":"string","description":"Seniority level (Junior, Mid-Level, Senior, Manager, Executive)"},"totalEmployees":{"type":"number","description":"Number of employees in this function x seniority combination"},"averageTenureMonths":{"type":["number","null"],"description":"Average tenure in months for employees in this combination"}},"required":["function","seniority","totalEmployees","averageTenureMonths"]},"description":"One entry per function x seniority combination with headcount and average tenure. Includes summary stats for each bucket, but does not list the people in each bucket."},"seniorityStats":{"type":"array","items":{"type":"object","properties":{"seniority":{"type":"string","description":"Seniority level (Junior, Mid-Level, Senior, Manager, Executive)"},"totalEmployees":{"type":"number","description":"Total employees at this seniority level"},"averageTenureMonths":{"type":["number","null"],"description":"Average tenure in months across all functions at this seniority level"}},"required":["seniority","totalEmployees","averageTenureMonths"]},"description":"Aggregated headcount and tenure per seniority level"},"functionStats":{"type":"array","items":{"type":"object","properties":{"function":{"type":"string","description":"Functional area (e.g. Engineering, Sales/GTM, Marketing)"},"totalEmployees":{"type":"number","description":"Total employees in this function"},"averageTenureMonths":{"type":["number","null"],"description":"Average tenure in months across all seniority levels in this function"}},"required":["function","totalEmployees","averageTenureMonths"]},"description":"Aggregated headcount and tenure per functional area"},"markdownSummary":{"type":"string","description":"Human-readable markdown summary of the depth chart, including a grid table of employee counts by function and seniority"}},"required":["reportId","companyInfo","totalEmployees","classifiedEmployees","categorizationNote","averageTenureMonths","buckets","seniorityStats","functionStats","markdownSummary"],"description":"The completed depth chart report"}},"required":["status","report"]},{"type":"object","properties":{"status":{"type":"string","description":"Report generation failed","enum":["failed"]},"errorMessage":{"type":"string","description":"Description of why generation failed"}},"required":["status","errorMessage"]}]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/mosaic/poll":{"post":{"operationId":"pollMosaic","summary":"Poll Mosaic run status","tags":["Repair Data"],"description":"Retrieves the status of a Mosaic job started by `/mosaic/start`. When the run is done, the response includes temporary download links for the enriched CSV and the summary report.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"runId":{"type":"string","minLength":1,"description":"Run ID returned by the /mosaic/start endpoint"}},"required":["apiKey","runId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"run":{"type":"object","properties":{"runId":{"type":"string","description":"Unique Mosaic run ID. Pass this to /mosaic/poll."},"status":{"type":"string","enum":["pending","running","done","failed"],"description":"Run lifecycle status. `pending` = queued, `running` = in progress, `done` = finished successfully, `failed` = terminal error. Download links are present only when status is `done`."},"rowCount":{"type":["integer","null"],"minimum":0,"description":"Rows detected in the input file."},"processedRowCount":{"type":["integer","null"],"minimum":0,"description":"Rows enriched and written to the output CSV (<= rowCount when maxRows or the free-trial cap applies)."},"isFreeTrialRun":{"type":"boolean","description":"True when this run used the organization's one-time free Mosaic trial (first 1,000 rows free)."},"stats":{"type":["object","null"],"properties":{"inputRows":{"type":"integer","minimum":0},"outputRows":{"type":"integer","minimum":0},"rowsWhereProfileFound":{"type":"integer","minimum":0},"rowsWithContactDetails":{"type":"integer","minimum":0},"rowsWithErrors":{"type":"integer","minimum":0}},"required":["inputRows","outputRows","rowsWhereProfileFound","rowsWithContactDetails","rowsWithErrors"],"description":"Aggregate enrichment statistics. Present when the run has finished processing rows."},"outputCsvUrl":{"type":["string","null"],"description":"Temporary HTTPS download link for the enriched CSV. Present only when status is `done`."},"reportUrl":{"type":["string","null"],"description":"Temporary HTTPS download link for the Markdown summary report. Present only when status is `done`."}},"required":["runId","status","rowCount","processedRowCount","isFreeTrialRun","stats","outputCsvUrl","reportUrl"],"description":"Current Mosaic run state. When status is done, outputCsvUrl and reportUrl are temporary download links."}},"required":["run"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/batch/poll":{"post":{"operationId":"pollBatchContactDetails","summary":"Poll batch contact details","tags":["Contact details"],"description":"Polls a batch contact details task. Returns partial results as they complete. Call this endpoint repeatedly until the 'done' field is true. Use the task ID returned from the 'Start batch contact details' endpoint.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"taskId":{"type":"string","minLength":1,"description":"The task ID from the start endpoint response."},"cursor":{"type":["string","null"],"description":"The pagination cursor from the previous poll response. Omit for the first request."},"take":{"type":"integer","exclusiveMinimum":0,"maximum":100,"default":100,"description":"The number of people to return per page. Defaults to 100."}},"required":["apiKey","taskId"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"overallStats":{"type":"object","properties":{"totalPeopleToFetch":{"type":"integer","minimum":0,"description":"The total number of people in this batch task."},"numCompleted":{"type":"integer","minimum":0,"description":"The number of people for which contact reveal has completed successfully."},"numFailed":{"type":"integer","minimum":0,"description":"The number of people for which enrichment failed (no data found or error occurred)."},"numRemaining":{"type":"integer","minimum":0,"description":"The number of people currently being processed (in progress)."},"numRejected":{"type":"integer","minimum":0,"description":"The number of people rejected before queueing because healing failed (for example, an invalid or unresolvable LinkedIn URL)."},"numDuplicates":{"type":"integer","minimum":0,"description":"The number of duplicates found in the input."}},"required":["totalPeopleToFetch","numCompleted","numFailed","numRemaining","numRejected","numDuplicates"],"description":"The overall statistics for the batch enrichment task."},"done":{"type":"boolean","description":"Whether the batch task has finished. When true, check the 'failed' field to determine if it completed successfully or failed."},"failed":{"type":"boolean","description":"Whether the batch task failed. If true, the task encountered an error and won't be retried. If false and done=true, the task completed successfully or was cancelled (check the 'canceled' field). If done=false, this field indicates current processing state."},"canceled":{"type":"boolean","description":"Whether the batch task was cancelled. When true, unclaimed profiles were not processed and credits were refunded."},"pageResults":{"type":"array","items":{"type":"object","properties":{"inputs":{"type":"object","properties":{"linkedinUrl":{"type":"object","properties":{"value":{"type":"string","pattern":"^(?:https?:\\/\\/)?(?:[a-z]+\\.)?linkedin\\.[a-z]{2,}\\/(?:in|sales\\/lead|talent\\/profile)\\/(?:[^/\\\\?,#]+)\\/?(?:[\\?,#].*)?","description":"A LinkedIn URL, like 'https://www.linkedin.com/in/jake'"}},"required":["value"]}},"required":["linkedinUrl"],"description":"The input details provided for this person."},"outputs":{"type":["object","null"],"properties":{"emails":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string","enum":["work","personal","other","unknown","generic"]},"status":{"type":"string","enum":["valid","risky","unknown","invalid"]}},"required":["email","type"]}},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string","enum":["mobile","other","unknown"]}},"required":["number","type"]}},"exhaustive":{"type":["boolean","null"]}},"required":["emails","phoneNumbers"],"description":"The reveal result for this person."}},"required":["inputs"]},"description":"The array of results for each person in the current page."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page of results."}},"required":["overallStats","done","failed","canceled","pageResults"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/batch/poll":{"post":{"operationId":"pollBatchLiveEnrich","summary":"Poll batch live enrichment","tags":["Live fetch"],"description":"Polls a batch live enrichment task for progress and results. Returns paginated enrichment results as they complete. Call repeatedly until status is 'completed' or 'failed'.\n\n<span>⚡ <strong>Rate limit:</strong> 360 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"taskId":{"type":"string","minLength":1,"description":"The batch ID returned from the start endpoint"},"cursor":{"type":["string","null"],"description":"Pagination cursor from the previous poll response. Omit for the first request."},"take":{"type":"integer","exclusiveMinimum":0,"maximum":100,"default":100,"description":"Number of results per page. Defaults to 100."}},"required":["apiKey","taskId"]}}}},"x-rate-limit":{"max":360,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["PENDING","PROCESSING","COMPLETED","FAILED"],"description":"Current status of the batch job"},"type":{"type":"string","enum":["PROFILE","COMPANY"]},"progress":{"type":"object","properties":{"total":{"type":"integer","minimum":0,"description":"Total unique identifiers in the batch (excluding duplicates skipped at submission)"},"completed":{"type":"integer","minimum":0,"description":"Number successfully enriched"},"notFound":{"type":"integer","minimum":0,"description":"Number of identifiers not found on LinkedIn"},"failed":{"type":"integer","minimum":0,"description":"Number that failed due to enrichment errors"},"malformed":{"type":"integer","minimum":0,"description":"Number of identifiers that could not be parsed from your input"},"pending":{"type":"integer","minimum":0,"description":"Number still waiting or in progress"}},"required":["total","completed","notFound","failed","malformed","pending"]},"results":{"type":"array","items":{"type":"object","properties":{"identifier":{"type":"string","description":"The raw identifier that was submitted."},"status":{"type":"string","enum":["COMPLETED","FAILED","NOT_FOUND","MALFORMED"],"description":"The enrichment status for this identifier."},"profile":{"type":["object","null"],"properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"],"description":"Enriched profile data. Present only when type is profile and status is COMPLETED."},"company":{"type":["object","null"],"properties":{"headline":{"type":["string","null"]},"description":{"type":["string","null"]},"employee_count":{"type":["number","null"]},"follower_count":{"type":["number","null"]},"founded_year":{"type":["number","null"]},"industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"linkedin_url":{"type":["string","null"]},"locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"name":{"type":["string","null"]},"org_id":{"type":["string","null"]},"slug":{"type":"string"},"specialties":{"type":["array","null"],"items":{"type":"string"}},"ticker":{"type":["string","null"]},"type":{"type":["string","null"]},"domain":{"type":["string","null"]},"website":{"type":["string","null"]},"est_employee_count_lower_bound":{"type":["number","null"]},"est_employee_count_upper_bound":{"type":["number","null"]},"standardized_industries":{"type":["array","null"],"items":{"type":"string"}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"logo_url":{"type":["string","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"revenue_usd_lower_bound":{"type":["string","null"]},"revenue_usd_upper_bound":{"type":["string","null"]}},"required":["slug"],"description":"Enriched company data. Present only when type is company and status is COMPLETED."}},"required":["identifier","status"]},"description":"Paginated enrichment results for completed/failed items."},"nextCursor":{"type":["string","null"],"description":"Pagination cursor for the next page. Null when no more results."},"completedAt":{"type":["string","null"],"format":"date-time","description":"ISO timestamp of when the batch completed, if done"}},"required":["status","type","progress","results"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/google-maps-search/poll":{"post":{"operationId":"poll-google-maps-results","summary":"Poll for Google Maps results","tags":["Google maps"],"description":"Poll for Google Maps results\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchID":{"type":"string","minLength":1,"description":"The ID of the Google Maps search. You should get this from the start endpoint."},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"The number of results to return per page."},"cursor":{"type":["string","null"],"description":"A pagination cursor returned from a previous search response. Use this to fetch the next page of results. If this is null, then the first page of results will be returned."}},"required":["apiKey","searchID"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"results":{"type":"array","items":{"type":"object","properties":{"placeId":{"type":"string"},"name":{"type":"string"},"address":{"type":["string","null"]},"latitude":{"type":"number"},"longitude":{"type":"number"},"description":{"type":["string","null"]},"website":{"type":["string","null"]},"rating":{"type":["number","null"]},"numReviews":{"type":["integer","null"]},"primaryType":{"type":["string","null"]},"allTypes":{"type":"array","items":{"type":"string"}},"priceLevel":{"type":["string","null"]},"phoneNumber":{"type":["string","null"]},"countryIsoCode":{"type":["string","null"]},"googleMapsURL":{"type":"string","description":"The Google Maps URL of the place"}},"required":["placeId","name","latitude","longitude","allTypes","googleMapsURL"]},"description":"The results of the search."},"nextCursor":{"type":["string","null"],"description":"The cursor to use to get the next page of results. If this is null, then there are no more results to fetch."}},"required":["results"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/local-business-search/poll":{"post":{"operationId":"pollLocalBusinessSearch","summary":"Poll local business search","tags":["AI research"],"description":"Poll Local Business Agent search results for a given researchRunId\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"researchRunId":{"type":"string","description":"Research run ID of the local business search"},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"The number of results to return per page"},"cursor":{"type":["string","null"],"description":"A pagination cursor returned from a previous search response. Use this to fetch the next page of results. If this is null, then the first page of results will be returned."}},"required":["apiKey","researchRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"researchRunId":{"type":"string","description":"Research run ID of the local business search"},"status":{"type":"string","enum":["PENDING","RUNNING","COMPLETED","FAILED"],"description":"Current status of the research run"},"progress":{"type":"object","properties":{"completed":{"type":"integer","description":"Number of companies that have been processed so far"},"total":{"type":"integer","description":"Total number of companies submitted for research"}},"required":["completed","total"],"description":"Progress of the research run"},"data":{"type":"object","properties":{"observations":{"type":"array","items":{"type":"object","properties":{"researchRunId":{"type":"string"},"websiteUrls":{"type":"array","items":{"type":"string"}},"rationale":{},"localBusiness":{"type":"object","properties":{"companyName":{"type":"string"},"domain":{"type":["string","null"]},"city":{"type":["string","null"]},"state":{"type":["string","null"]},"stateCode":{"type":["string","null"]},"countryName":{"type":["string","null"]},"country3LetterCode":{"type":["string","null"]},"address":{"type":["string","null"]},"context":{"type":["string","null"]}},"required":["companyName"]},"businessEmails":{"type":"array","items":{"type":"object","properties":{"emailAddress":{"type":"string"},"domain":{"type":["string","null"]}},"required":["emailAddress"]}},"businessPhones":{"type":"array","items":{"type":"object","properties":{"phoneNumber":{"type":"string"},"countryCode":{"type":["string","null"]},"countryCallingCode":{"type":["number","null"]}},"required":["phoneNumber"]}},"socialMediaLinks":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string"},"platform":{"type":"string"}},"required":["url","platform"]}},"employees":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"role":{"type":["string","null"]},"otherInfo":{},"emailAddress":{"type":["object","null"],"properties":{"emailAddress":{"type":"string"},"domain":{"type":"string"}},"required":["emailAddress","domain"]},"phoneNumber":{"type":["object","null"],"properties":{"phoneNumber":{"type":"string"},"countryCode":{"type":["string","null"]},"countryCallingCode":{"type":["number","null"]}},"required":["phoneNumber"]},"socialMediaLinks":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string"},"platform":{"type":"string"}},"required":["url","platform"]}}},"required":["name","socialMediaLinks"]}}},"required":["researchRunId","websiteUrls","localBusiness","businessEmails","businessPhones","socialMediaLinks","employees"]}}},"required":["observations"],"description":"The Local business agent search result"},"nextCursor":{"type":["string","null"],"description":"The cursor to use to get the next page of results. If this is null, then there are no more results to fetch"}},"required":["researchRunId","status","progress","data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/google-maps-search/check":{"post":{"operationId":"check-google-maps-results","summary":"Check progress for Google Maps results","tags":["Google maps"],"description":"Check progress for Google Maps results\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchID":{"type":"string","minLength":1,"description":"The ID of the Google Maps search. You should get this from the start endpoint."}},"required":["apiKey","searchID"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["NOT_STARTED","RUNNING","COMPLETED","FAILED"]},"totalPlacesFound":{"type":"integer","minimum":0,"description":"The total number of places found so far."},"totalPlacesRequested":{"type":"integer","minimum":0,"description":"The total number of places requested."},"percentageCompleted":{"type":"number","minimum":0,"maximum":100,"description":"The percentage of the search that has been completed."}},"required":["status","totalPlacesFound","totalPlacesRequested","percentageCompleted"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/domain-lookup/polling":{"post":{"operationId":"domainLookupPolling","summary":"Poll Domain lookup","tags":["AI research"],"description":"Poll for the results of a domain lookup task.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"domainAgentRunId":{"type":"string","description":"The ID of the domain agent run returned by the trigger endpoint."},"cursor":{"type":["string","null"],"description":"The cursor from where to start fetching the next page of results. Provide the `nextCursor` from the previous response to continue from there."},"pageSize":{"type":"number","minimum":1,"maximum":100,"default":10,"description":"The number of results to fetch per page."}},"required":["apiKey","domainAgentRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["NOT_STARTED","STARTED","DONE","FAILED"]},"data":{"type":"array","items":{"type":"object","properties":{"companyName":{"type":"string","description":"The name of the company."},"bestDomain":{"type":["string","null"],"description":"The best matching domain for the company. Null if no domain was found."},"emailDomains":{"type":["array","null"],"items":{"type":"object","properties":{"emailDomain":{"type":["string","null"],"description":"The email domain found for the company. Personal email domains are excluded."},"confidence":{"type":["number","null"],"minimum":0,"maximum":10,"description":"The confidence score for the email domain found (1-10, where 10 is most confident)."},"rationale":{"type":["string","null"],"description":"The rationale for the email domain selection."}}},"description":"The email domains of the company."},"allDomains":{"type":["array","null"],"items":{"type":"string"},"description":"All found domains for the company."},"confidence":{"type":["integer","null"],"minimum":0,"maximum":10,"description":"The confidence score between 0 and 10 denoting the match quality. Higher confidence score means the company has more matching parameters."},"rationale":{"type":"string","description":"The reasoning for why the agent chose the given company."}},"required":["companyName","rationale"]},"description":"The list of companies found along with their rationale and confidence scores."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page of results. Null if there are no more results."},"hasMore":{"type":"boolean","description":"Whether there are more results to fetch."}},"required":["status","data","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/github-lookup/poll":{"post":{"operationId":"githubLookupPoll","summary":"Poll GitHub lookup results","tags":["GitHub"],"description":"Poll for the results of a GitHub lookup task. Returns progress breakdown and all completed results in a single response (no pagination).\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"githubAgentRunId":{"type":"string","description":"The ID of the GitHub lookup agent run which you got back from the trigger endpoint."}},"required":["apiKey","githubAgentRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"githubAgentRunId":{"type":"string","description":"The ID of the GitHub lookup run these results belong to."},"overallStatus":{"type":"string","enum":["NOT_STARTED","STARTED","DONE","FAILED"],"description":"The overall status of the lookup run."},"counts":{"type":"object","properties":{"total":{"type":"integer","description":"Total number of people submitted in this run."},"found":{"type":"integer","description":"Number of people for whom a GitHub profile was found."},"notFound":{"type":"integer","description":"Number of people for whom no GitHub profile could be found after searching."},"invalidInput":{"type":"integer","description":"Number of people whose input could not be resolved (e.g. unresolvable LinkedIn URL, insufficient information)."},"failed":{"type":"integer","description":"Number of people whose lookup failed due to a system error."},"pending":{"type":"integer","description":"Number of people still waiting to be processed."}},"required":["total","found","notFound","invalidInput","failed","pending"],"description":"Breakdown of lookup progress. All fields sum to the total number of people in the run."},"people":{"type":"array","items":{"type":"object","properties":{"person":{"type":"object","properties":{"fullName":{"type":"string","description":"The full name of the person."},"company":{"type":["string","null"],"description":"Company provided in the original input."},"jobTitle":{"type":["string","null"],"description":"Job title provided in the original input."},"workEmail":{"type":["string","null"],"description":"Work email provided in the original input."},"linkedInUrl":{"type":["string","null"],"description":"LinkedIn URL provided or resolved from the original input."},"linkedinUserId":{"type":["string","null"],"description":"LinkedIn numeric user ID if provided in the original input."},"customerProvidedId":{"type":["string","null"],"description":"The external ID echoed back from the input for joining results to the original dataset."}},"required":["fullName"],"description":"The original input person."},"githubProfile":{"oneOf":[{"type":"object","properties":{"outcome":{"type":"string","enum":["found"]},"username":{"type":"string","description":"The GitHub username (login) for the matched profile."},"githubUrl":{"type":"string","format":"uri","description":"The GitHub profile URL."},"displayName":{"type":["string","null"],"description":"The user's display name on GitHub."},"profilePictureUrl":{"type":["string","null"],"format":"uri","description":"URL to the user's GitHub profile picture."},"bio":{"type":["string","null"],"description":"One-line summary below the person's name on GitHub."},"location":{"type":["string","null"],"description":"Location as displayed on the GitHub profile."},"numRepositories":{"type":["integer","null"],"description":"Number of public repositories."},"numFollowers":{"type":["integer","null"],"description":"Number of followers on GitHub."},"confidenceOutOf10":{"type":"integer","minimum":1,"maximum":10,"description":"Confidence score between 1 and 10 denoting the match quality."},"rationale":{"type":["string","null"],"description":"Short explanation of why this GitHub profile was matched to the person, referencing details like name, company, or location."}},"required":["outcome","username","githubUrl","confidenceOutOf10"]},{"type":"object","properties":{"outcome":{"type":"string","enum":["notFound"]},"message":{"type":"string","description":"A user-facing explanation of why no profile was found."}},"required":["outcome","message"]},{"type":"object","properties":{"outcome":{"type":"string","enum":["invalidInput"]},"message":{"type":"string","description":"A user-facing explanation of why the lookup could not proceed."}},"required":["outcome","message"]},{"type":"object","properties":{"outcome":{"type":"string","enum":["failed"]},"message":{"type":"string","description":"A user-facing explanation of the failure."}},"required":["outcome","message"]}],"description":"The GitHub lookup result for this person."}},"required":["person","githubProfile"]},"description":"All processed people sorted by outcome (found first). Pending people are not included."}},"required":["githubAgentRunId","overallStatus","counts","people"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/github-to-linkedin/polling":{"post":{"operationId":"githubToLinkedInPolling","summary":"Poll GitHub to LinkedIn lookup","tags":["GitHub"],"description":"Poll for the results of a GitHub to LinkedIn lookup task.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"githubAgentRunId":{"type":"string","description":"The ID of the GitHub to LinkedIn lookup run which you got back from the trigger endpoint."},"cursor":{"type":["string","null"],"description":"The cursor from where to start fetching the next page of results. Provide `nextCursor` from the previous response to continue from there."},"pageSize":{"type":"number","minimum":1,"maximum":100,"default":10,"description":"The number of results to fetch per page."}},"required":["apiKey","githubAgentRunId"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["NOT_STARTED","STARTED","DONE","FAILED"]},"data":{"type":"array","items":{"type":"object","properties":{"githubUsername":{"type":"string"},"customerProvidedId":{"type":["string","null"]},"status":{"type":"string","enum":["NOT_STARTED","STARTED","DONE","FAILED"]},"linkedInUrl":{"type":["string","null"],"format":"uri"},"linkedInSlug":{"type":["string","null"]},"confidenceOutOf10":{"type":"integer","minimum":0,"maximum":10},"rationale":{"type":["string","null"]},"extractedEmails":{"type":"array","items":{"type":"string"}},"githubProfile":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"company":{"type":["string","null"]},"location":{"type":["string","null"]},"bio":{"type":["string","null"]},"blog":{"type":["string","null"]},"avatarUrl":{"type":["string","null"]},"followers":{"type":["integer","null"]},"publicRepos":{"type":["integer","null"]}}},"errorMessage":{"type":["string","null"]}},"required":["githubUsername","status","confidenceOutOf10","extractedEmails"]},"description":"The list of GitHub to LinkedIn lookup results along with their rationale and confidence scores."},"nextCursor":{"type":["string","null"],"description":"The cursor from where to start fetching the next page of results. Provide `nextCursor` from the previous response to continue from there."},"hasMore":{"type":"boolean","description":"Whether there are more results to fetch for this run."}},"required":["status","data","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/social-media-lookup/polling":{"post":{"operationId":"socialMediaLookupPolling","summary":"Poll social media lookup","tags":["Social media lookup"],"description":"Poll for the results of a social media lookup task.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"socialMediaFinderRunId":{"type":"string","description":"The ID of the social media finder run returned by the trigger endpoint."},"cursor":{"type":["string","null"],"description":"Cursor from the previous response to fetch the next page. Omit for the first page."},"pageSize":{"type":"number","minimum":1,"maximum":100,"default":10,"description":"Number of results to return per page."}},"required":["apiKey","socialMediaFinderRunId"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["pending","in_progress","completed","failed"],"description":"Current status of the lookup run: pending, in_progress, completed, or failed."},"data":{"type":"array","items":{"type":"object","properties":{"fullName":{"type":"string","description":"The full name of the person this result corresponds to."},"customerProvidedId":{"type":["string","null"],"description":"The external ID echoed back from the input for joining results to your original dataset."},"outcome":{"type":["string","null"],"enum":["FOUND_CANDIDATES","NO_CANDIDATES_FOUND","INSUFFICIENT_INFORMATION",null],"description":"Overall outcome: FOUND_CANDIDATES if at least one profile was found, NO_CANDIDATES_FOUND if the search returned nothing, INSUFFICIENT_INFORMATION if there was not enough input to search."},"candidates":{"type":"array","items":{"type":"object","properties":{"platform":{"type":"string","enum":["TWITTER","LINKEDIN","INSTAGRAM","FACEBOOK","TIKTOK","YOUTUBE","THREADS","PINTEREST","BLUESKY","TWITCH","ASK_FM","STEAM","MEDIUM","YELP","TRIPADVISOR","DISCORD","OTHER"],"description":"The social media platform this candidate is for."},"handle":{"type":"string","description":"The handle or username on that platform, without any @ prefix (e.g. 'karpathy')."},"profileUrl":{"type":["string","null"],"format":"uri","description":"Full URL to the profile on that platform (e.g. 'https://x.com/karpathy')."},"displayName":{"type":["string","null"],"description":"The display name shown on the profile."},"bio":{"type":["string","null"],"description":"Profile bio or description."},"location":{"type":["string","null"],"description":"Location as displayed on the profile."},"followerCount":{"type":["integer","null"],"minimum":0,"description":"Number of followers on that platform."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified on that platform."},"confidenceOutOf10":{"type":"integer","minimum":0,"maximum":10,"description":"Confidence score from 0 to 10. Higher scores indicate a stronger match."},"rationale":{"type":["string","null"],"description":"The AI reasoning for why this profile was selected as the best match."}},"required":["platform","handle","confidenceOutOf10"]},"description":"The best-match profiles found, one per platform. Empty if no confident matches were found."},"errorMessage":{"type":["string","null"],"description":"Error message if the lookup failed for this person. Null on success."}},"required":["fullName","candidates"]},"description":"The lookup results for each person in this run."},"nextCursor":{"type":["string","null"],"description":"Cursor for the next page of results. Null if there are no more results."},"hasMore":{"type":"boolean","description":"Whether there are more results to fetch."}},"required":["status","data","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/social-media-lookup/batch/poll":{"post":{"operationId":"socialMediaLookupBatchPolling","summary":"Poll batch social media lookup","tags":["Social media lookup"],"description":"Poll for the results of a batch social media lookup. Returns partial results as they become available, with overall progress statistics.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"runId":{"type":"string","description":"The ID of the batch run returned by the batch trigger endpoint."},"nextPageToken":{"type":["string","null"],"description":"Token from the previous response to fetch the next page. Omit for the first page."},"pageSize":{"type":"number","minimum":1,"maximum":100,"default":50,"description":"Number of results to return per page (default 50, max 100)."}},"required":["apiKey","runId"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["pending","in_progress","completed","failed"],"description":"Current status of the batch run."},"overallStats":{"type":"object","properties":{"totalPeople":{"type":"integer","minimum":0,"description":"Total number of people in this batch."},"numCompleted":{"type":"integer","minimum":0,"description":"Number of people whose lookup has completed (success or no-match)."},"numFailed":{"type":"integer","minimum":0,"description":"Number of people whose lookup failed (insufficient info, error)."},"numRemaining":{"type":"integer","minimum":0,"description":"Number of people still being processed."}},"required":["totalPeople","numCompleted","numFailed","numRemaining"],"description":"Summary statistics for the entire batch."},"results":{"type":"array","items":{"type":"object","properties":{"fullName":{"type":"string","description":"The full name of the person this result corresponds to."},"customerProvidedId":{"type":["string","null"],"description":"The external ID echoed back from the input for joining results to your original dataset."},"outcome":{"type":["string","null"],"enum":["FOUND_CANDIDATES","NO_CANDIDATES_FOUND","INSUFFICIENT_INFORMATION",null],"description":"Overall outcome: FOUND_CANDIDATES if at least one profile was found, NO_CANDIDATES_FOUND if the search returned nothing, INSUFFICIENT_INFORMATION if there was not enough input to search."},"candidates":{"type":"array","items":{"type":"object","properties":{"platform":{"type":"string","enum":["TWITTER","LINKEDIN","INSTAGRAM","FACEBOOK","TIKTOK","YOUTUBE","THREADS","PINTEREST","BLUESKY","TWITCH","ASK_FM","STEAM","MEDIUM","YELP","TRIPADVISOR","DISCORD","OTHER"],"description":"The social media platform this candidate is for."},"handle":{"type":"string","description":"The handle or username on that platform, without any @ prefix (e.g. 'karpathy')."},"profileUrl":{"type":["string","null"],"format":"uri","description":"Full URL to the profile on that platform (e.g. 'https://x.com/karpathy')."},"displayName":{"type":["string","null"],"description":"The display name shown on the profile."},"bio":{"type":["string","null"],"description":"Profile bio or description."},"location":{"type":["string","null"],"description":"Location as displayed on the profile."},"followerCount":{"type":["integer","null"],"minimum":0,"description":"Number of followers on that platform."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified on that platform."},"confidenceOutOf10":{"type":"integer","minimum":0,"maximum":10,"description":"Confidence score from 0 to 10. Higher scores indicate a stronger match."},"rationale":{"type":["string","null"],"description":"The AI reasoning for why this profile was selected as the best match."}},"required":["platform","handle","confidenceOutOf10"]},"description":"The best-match profiles found, one per platform. Empty if no confident matches were found."},"errorMessage":{"type":["string","null"],"description":"Error message if the lookup failed for this person. Null on success."}},"required":["fullName","candidates"]},"description":"One entry per person on this page."},"nextPageToken":{"type":["string","null"],"description":"Token for the next page of results. Null when there are no more results."}},"required":["status","overallStats","results"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/get-lists":{"post":{"operationId":"getCompanyExclusionLists","summary":"Get company exclusion list","tags":["Exclusions"],"description":"Get company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"listID":{"type":"string","description":"The ID of the company exclusion list."},"name":{"type":"string","description":"The name of the company exclusion list."}},"required":["listID","name"]}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/create-list":{"post":{"operationId":"createCompanyExclusionList","summary":"Create company exclusion list","tags":["Exclusions"],"description":"Create a company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","minLength":1,"description":"The name of the company exclusion list."},"isOrganizationWide":{"type":"boolean","default":false,"description":"Whether the company exclusion list is organization-wide."}},"required":["apiKey","name"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the company exclusion list."},"name":{"type":"string","description":"The name of the company exclusion list."}},"required":["listId","name"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/delete-list":{"post":{"operationId":"deleteCompanyExclusionList","summary":"Delete company exclusion list","tags":["Exclusions"],"description":"Delete a company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listIDs":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"The IDs of the company exclusion lists to delete."}},"required":["apiKey","listIDs"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listIDs":{"type":"array","items":{"type":"string"},"description":"The IDs of the deleted company exclusion lists."}},"required":["listIDs"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/add-to-list":{"post":{"operationId":"addCompaniesToExclusionList","summary":"Add companies to a company exclusion list","tags":["Exclusions"],"description":"Add companies to a company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listId":{"type":"string","description":"The ID of the company exclusion list to add companies to."},"companies":{"type":"array","items":{"type":"object","properties":{"domain":{"type":["string","null"],"description":"A company domain, like 'example.com'."},"linkedinUrl":{"type":["string","null"],"description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'."}}},"maxItems":5000,"description":"The companies to add to the exclusion list. A maximum of 5000 companies can be added at a time. Each entry needs a domain or a LinkedIn company URL; invalid entries are skipped and reported in the response without failing the request."}},"required":["apiKey","listId","companies"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the company exclusion list."},"companiesAdded":{"type":"number","description":"Number of companies added to the exclusion list"},"invalidIdentifiers":{"type":"array","items":{"type":"object","properties":{"input":{"type":"object","properties":{"domain":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]}},"description":"The original entry as submitted."},"reason":{"type":"string","description":"The specific reason this entry could not be added."}},"required":["input","reason"]},"description":"Entries that could not be added because they had no valid company domain or LinkedIn company URL. Valid entries in the same request are still added."}},"required":["listId","companiesAdded","invalidIdentifiers"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/remove-from-list":{"post":{"operationId":"removeCompanyFromExclusionList","summary":"Remove company from company exclusion list","tags":["Exclusions"],"description":"Remove a company from a company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listId":{"type":"string","description":"The ID of the company exclusion list to remove the company from."},"excludedCompanyDetails":{"type":"object","properties":{"domains":{"type":["array","null"],"items":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"A domain, like 'example.com' or 'https://example.com'"},"default":[],"description":"Domains of the companies to remove from the exclusion list"},"linkedinUrls":{"type":["array","null"],"items":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?:[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'"},"default":[],"description":"LinkedIn URLs of the companies to remove from the exclusion list"}},"description":"Details of the companies to remove from the exclusion list"}},"required":["apiKey","listId","excludedCompanyDetails"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"deletedExcludedCompanies":{"type":"number","description":"Number of companies removed from the exclusion list"}},"required":["deletedExcludedCompanies"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/read-from-list":{"post":{"operationId":"getExcludedCompaniesForExclusionList","summary":"Get excluded companies for exclusion list","tags":["Exclusions"],"description":"Get excluded companies for a specific exclusion list with pagination\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"exclusionListId":{"type":"string","minLength":1,"description":"ID of the company exclusion list"},"cursor":{"type":["string","null"],"description":"Pagination cursor"},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"Number of companies to return per page"}},"required":["apiKey","exclusionListId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"size":{"type":"number","description":"Total number of excluded companies in the list"},"companies":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"ID of the excluded company"},"domain":{"type":["string","null"],"description":"Domain of the excluded company"},"linkedInUrl":{"type":["string","null"],"description":"LinkedIn URL of the excluded company"},"name":{"type":["string","null"],"description":"Name of the excluded company"}},"required":["id","domain","linkedInUrl","name"]},"description":"List of excluded companies"},"nextCursor":{"type":["string","null"],"description":"Cursor for the next page of results"},"hasMore":{"type":"boolean","description":"Whether there are more results available"}},"required":["size","companies","nextCursor","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/audience/create-list":{"post":{"operationId":"createCompanyExclusionListFromAudience","summary":"Create company exclusion list from audience","tags":["Exclusions"],"description":"This endpoint creates a new company exclusion list by extracting all companies from a specified audience.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"audienceId":{"type":"string","minLength":1,"description":"The ID of the audience to create the exclusion list from."},"name":{"type":["string","null"],"description":"The name of the company exclusion list. Defaults to 'Exclusion list from {audienceName}' if not provided."},"isOrganizationWide":{"type":"boolean","default":false,"description":"Whether the company exclusion list is organization-wide."}},"required":["apiKey","audienceId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the company exclusion list."},"name":{"type":"string","description":"The name of the company exclusion list."},"companiesAdded":{"type":"number","description":"The number of companies added to the exclusion list."}},"required":["listId","name","companiesAdded"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/get-lists":{"post":{"operationId":"getProspectExclusionLists","summary":"Get prospect exclusion lists","tags":["Exclusions"],"description":"Get prospect exclusion lists\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the prospect exclusion list."},"name":{"type":"string","description":"The name of the prospect exclusion list."}},"required":["listId","name"]}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/create-list":{"post":{"operationId":"createProspectExclusionList","summary":"Create prospect exclusion list","tags":["Exclusions"],"description":"Create a prospect exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","minLength":1,"description":"The name of the prospect exclusion list."},"isOrganizationWide":{"type":"boolean","default":false,"description":"Whether the prospect exclusion list is organization-wide."}},"required":["apiKey","name"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the prospect exclusion list."},"name":{"type":"string","description":"The name of the prospect exclusion list."}},"required":["listId","name"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/delete-list":{"post":{"operationId":"deleteProspectExclusionList","summary":"Delete prospect exclusion list","tags":["Exclusions"],"description":"Delete a prospect exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listIds":{"type":"array","items":{"type":"string"},"minItems":1,"description":"The IDs of the prospect exclusion lists to delete."}},"required":["apiKey","listIds"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listIds":{"type":"array","items":{"type":"string"},"description":"The IDs of the deleted prospect exclusion lists."}},"required":["listIds"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/add-to-list":{"post":{"operationId":"addProspectsToExclusionList","summary":"Add prospects to a prospect exclusion list","tags":["Exclusions"],"description":"Add prospects to a prospect exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listId":{"type":"string","description":"The ID of the prospect exclusion list to add prospects to."},"prospects":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":["string","null"]}}},"maxItems":5000,"description":"The prospects to add to the exclusion list. A maximum of 5000 prospects can be added at a time."}},"required":["apiKey","listId","prospects"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the prospect exclusion list."},"prospectsAdded":{"type":"number","description":"Number of prospects added to the exclusion list"}},"required":["listId","prospectsAdded"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/remove-from-list":{"post":{"operationId":"removeProspectFromExclusionList","summary":"Remove prospect from prospect exclusion list","tags":["Exclusions"],"description":"Remove a prospect from a prospect exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listId":{"type":"string","description":"The ID of the prospect exclusion list to remove the prospect from."},"excludedProspectDetails":{"type":"object","properties":{"linkedinUrls":{"type":"array","items":{"type":"string"},"minItems":1,"description":"LinkedIn URLs of the prospects to remove from the exclusion list"}},"required":["linkedinUrls"],"description":"Details of the prospects to remove from the exclusion list"}},"required":["apiKey","listId","excludedProspectDetails"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"deletedExcludedProspectIds":{"type":"array","items":{"type":"string"},"description":"The IDs of the excluded prospects that were removed from the exclusion list."}},"required":["deletedExcludedProspectIds"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/read-from-list":{"post":{"operationId":"getExcludedProspectsForExclusionList","summary":"Get excluded prospects for exclusion list","tags":["Exclusions"],"description":"Get excluded prospects for a specific exclusion list with pagination\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"exclusionListId":{"type":"string","minLength":1,"description":"ID of the prospect exclusion list"},"cursor":{"type":["string","null"],"description":"Pagination cursor"},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"Number of prospects to return per page"}},"required":["apiKey","exclusionListId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"size":{"type":"number","description":"Total number of excluded profiles in the list"},"prospects":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"ID of the excluded prospect"},"linkedInUrl":{"type":["string","null"],"description":"LinkedIn URL of the excluded prospect"},"name":{"type":["string","null"],"description":"Name of the excluded prospect"}},"required":["id","linkedInUrl","name"]},"description":"List of excluded prospects"},"nextCursor":{"type":["string","null"],"description":"Cursor for the next page of results"},"hasMore":{"type":"boolean","description":"Whether there are more results available"}},"required":["size","prospects","nextCursor","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/audience/create-list":{"post":{"operationId":"createProspectExclusionListFromAudience","summary":"Create prospect exclusion list from audience","tags":["Exclusions"],"description":"Create a prospect exclusion list from an audience's prospects\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"audienceId":{"type":"string","minLength":1,"description":"The ID of the audience to create the exclusion list from."},"name":{"type":["string","null"],"description":"The name of the prospect exclusion list. Defaults to 'Exclusion list from {audienceName}' if not provided."},"isOrganizationWide":{"type":"boolean","default":false,"description":"Whether the prospect exclusion list is organization-wide."}},"required":["apiKey","audienceId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the prospect exclusion list."},"name":{"type":"string","description":"The name of the prospect exclusion list."},"prospectsAdded":{"type":"number","description":"The number of prospects added to the exclusion list."}},"required":["listId","name","prospectsAdded"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/regions":{"get":{"operationId":"getRegions","summary":"List countries and regions","tags":["Enums"],"description":"Get a list of all countries and regions supported by the API, along with their names, codes, and additional metadata.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"countries":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The common name of the country."},"apiCode":{"type":"string","description":"The code to use when filtering by this country in the API."},"isoCodeAlpha3":{"type":"string","description":"The ISO 3166-1 alpha-3 country code (e.g. 'USA', 'CAN')."},"isoCodeAlpha2":{"type":"string","description":"The ISO 3166-1 alpha-2 country code (e.g. 'US', 'CA')."},"flag":{"type":"string","description":"The Unicode flag emoji for the country."}},"required":["name","apiCode","isoCodeAlpha3","isoCodeAlpha2","flag"]}},"regions":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The common name of the region."},"apiCode":{"type":"string","description":"The code to use when filtering by this region in the API."},"acronym":{"type":["string","null"],"description":"The short form of the region name, if applicable."},"flag":{"type":"string","description":"The Unicode flag emoji for the region."},"countries":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The common name of the country."},"apiCode":{"type":"string","description":"The code to use when filtering by this country in the API."},"isoCodeAlpha3":{"type":"string","description":"The ISO 3166-1 alpha-3 country code (e.g. 'USA', 'CAN')."},"isoCodeAlpha2":{"type":"string","description":"The ISO 3166-1 alpha-2 country code (e.g. 'US', 'CA')."},"flag":{"type":"string","description":"The Unicode flag emoji for the country."}},"required":["name","apiCode","isoCodeAlpha3","isoCodeAlpha2","flag"]},"description":"The countries included in this region."}},"required":["name","apiCode","countries"],"description":"A multi-country region, as defined by Fiber AI."}}},"required":["countries","regions"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/languages":{"get":{"operationId":"getLanguages","summary":"List languages","tags":["Enums"],"description":"Get a list of all languages that you can pass to our API\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"string"},"description":"List of all languages supported by Fiber; uses their full English names."},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/time-zones":{"get":{"operationId":"getTimeZones","summary":"List time zones","tags":["Enums"],"description":"Get a comprehensive list of all available time zones with geographic information, current time data, and UTC offset ranges. Useful for populating time zone filters in search requests.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"timeZoneName":{"type":"string","description":"The IANA timezone identifier (e.g., 'America/New_York')"},"minUtcOffsetMinutes":{"type":"integer","minimum":-840,"maximum":840,"description":"The minimum (most negative) offset from UTC at any point in the year, in minutes. Time zones that observe daylight saving time will have a max offset 60 minutes greater than their min offset."},"maxUtcOffsetMinutes":{"type":"integer","minimum":-840,"maximum":840,"description":"The maximum (most positive) offset from UTC at any point in the year, in minutes. Time zones that observe daylight saving time will have a max offset 60 minutes greater than their min offset."},"continentCode":{"type":["string","null"],"description":"Continent code (e.g., 'NA' for North America)"},"continentName":{"type":["string","null"],"description":"Continent name (e.g., 'North America')"},"countryName":{"type":["string","null"],"description":"Country name (e.g., 'United States')"},"countryCodeAlpha2":{"type":["string","null"],"description":"The ISO 3166-1 alpha-2 country code (e.g. 'US')."},"mainCities":{"type":"array","items":{"type":"string"},"description":"Major cities in this timezone"},"alternativeName":{"type":"string","description":"Alternative/common name for the timezone"},"subZones":{"type":"array","items":{"type":"string"},"description":"Related timezone variants that share geographic proximity or similar time offset behaviors (e.g., Mountain Time zones in British Columbia: 'America/Creston', 'America/Dawson_Creek', 'America/Fort_Nelson')"},"currentUtcOffsetMinutes":{"type":"integer","minimum":-840,"maximum":840,"description":"Current UTC offset in minutes"},"currentLocalTime":{"type":"string","description":"Current time in this timezone, formatted as an ISO 8601 string."},"abbreviation":{"type":"string","description":"Current timezone abbreviation (e.g., 'EST', 'PDT')"},"displayName":{"type":"string","description":"Human-friendly display name"},"isDaylightSaving":{"type":"boolean","description":"Whether the time zone is currently observing daylight saving time."}},"required":["timeZoneName","minUtcOffsetMinutes","maxUtcOffsetMinutes","mainCities","alternativeName","subZones","currentUtcOffsetMinutes","currentLocalTime","abbreviation","displayName","isDaylightSaving"]},"description":"The list of all available time zones with comprehensive information."},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/industries":{"get":{"operationId":"getIndustries","summary":"List industries","tags":["Enums"],"description":"Get lists of various industry categorizations. Useful for our company search API.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"fiberIndustries":{"type":"array","items":{"type":"string"},"description":"Fiber's standardized list of industries."},"linkedinIndustries":{"type":"array","items":{"type":"string"},"description":"LinkedIn's list of industries."},"crunchbaseIndustries":{"type":"array","items":{"type":"string"},"description":"Crunchbase's list of industries (a.k.a. Crunchbase categories). Use these values to populate the `crunchbaseCategories` filter on the company-search API."},"crunchbaseIndustryGroups":{"type":"object","additionalProperties":{"type":"array","items":{"type":"string"}},"description":"Crunchbase's industry groups mapped to their constituent industries. Keys are industry group names, values are arrays of industry names belonging to that group. Use the keys to populate the `crunchbaseCategoryGroups` filter on the company-search API."},"companyCounts":{"type":["object","null"],"properties":{"fiberIndustries":{"type":"object","additionalProperties":{"type":"number"}},"linkedinIndustries":{"type":"object","additionalProperties":{"type":"number"}},"crunchbaseIndustries":{"type":"object","additionalProperties":{"type":"number"}},"crunchbaseIndustryGroups":{"type":"object","additionalProperties":{"type":"number"}}},"required":["fiberIndustries","linkedinIndustries","crunchbaseIndustries","crunchbaseIndustryGroups"],"description":"Shows the number of companies in each industry."}},"required":["fiberIndustries","linkedinIndustries","crunchbaseIndustries","crunchbaseIndustryGroups"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/tags":{"get":{"operationId":"getTags","summary":"List profile and company tags","tags":["Enums"],"description":"Get a list of all profile and company tags that you can use to filter searches in our API, along with their descriptions.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profileTags":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]},"name":{"type":"string"},"description":{"type":["string","null"]},"emoji":{"type":"string"}},"required":["slug","name","emoji"]},"description":"List of all available profile tags"},"companyTags":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]},"name":{"type":"string"},"description":{"type":["string","null"]},"emoji":{"type":"string"}},"required":["slug","name","emoji"]},"description":"List of all available company tags"}},"required":["profileTags","companyTags"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/naics-codes":{"get":{"operationId":"getNaicsCodes","summary":"List NAICS codes","tags":["Enums"],"description":"Get all NAICS (North American Industry Classification System) codes from the 2022 version. Returns each code and its corresponding title.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"naicsCodes":{"type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"The NAICS code identifier."},"title":{"type":"string","description":"The title of the NAICS code."}},"required":["code","title"]},"description":"The list of all NAICS 2022 codes with their titles."}},"required":["naicsCodes"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/accelerators":{"get":{"operationId":"getAccelerators","summary":"List accelerators","tags":["Enums"],"description":"Get a list of all accelerators with their metadata, total company counts, and statistics broken down by batch and year. Useful for filtering accelerator data in search APIs.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"acceleratorSlug":{"type":"string","description":"The accelerator identifier (e.g., 'y_combinator')"},"acceleratorName":{"type":"string","description":"The human-readable accelerator name (e.g., 'Y Combinator')"},"numCompanies":{"type":"integer","minimum":0,"description":"Total number of companies in this accelerator"},"batches":{"type":["array","null"],"items":{"type":"object","properties":{"batch":{"type":"string","description":"The batch name (e.g., 'Winter 2023', 'Spring 2025')"},"numCompanies":{"type":"integer","minimum":0,"description":"Number of companies in this batch for this accelerator"}},"required":["batch","numCompanies"]},"description":"List of batches with company counts for this accelerator. Null if the accelerator doesn't use batches."},"years":{"type":["array","null"],"items":{"type":"object","properties":{"year":{"type":"integer","minimum":2000,"maximum":2027,"description":"The year the companies participated in the accelerator"},"numCompanies":{"type":"integer","minimum":0,"description":"Number of companies in this year for this accelerator"}},"required":["year","numCompanies"]},"description":"List of years with company counts for this accelerator. Null if the accelerator doesn't track years."},"logoUrl":{"type":["string","null"],"description":"URL to the accelerator's logo image"},"website":{"type":["string","null"],"description":"The accelerator's website URL (includes https:// and www. if applicable)"},"otherNames":{"type":["array","null"],"items":{"type":"string"},"description":"Alternate names for the accelerator (e.g., 'YC' for 'Y Combinator')"}},"required":["acceleratorSlug","acceleratorName","numCompanies"]},"description":"List of all accelerators with their metadata and company statistics"},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/subdivisions":{"get":{"operationId":"getSubdivisions","summary":"List subdivisions by country","tags":["Enums"],"description":"Get a list of subdivisions (states, provinces, Länder, etc.) for a given country, identified by ISO 3166-1 alpha-2 or alpha-3 code.\n\n<span>⚡ <strong>Rate limit:</strong> 250 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":2,"maxLength":3},"in":"query","name":"countryCode","required":true,"description":"ISO 3166-1 alpha-2 (e.g. 'US') or alpha-3 (e.g. 'USA') country code. Use GET /enums/regions to look up codes by country name."}],"x-rate-limit":{"max":250,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"countryCode":{"type":"string","description":"The alpha-3 country code that was queried."},"subdivisions":{"type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"The subdivision code without the country prefix (e.g. 'CA' for California, 'MH' for Maharashtra)."},"name":{"type":"string","description":"The official name of the subdivision."},"type":{"type":"string","description":"The type of subdivision (e.g. 'State', 'Province', 'Land')."},"alternateNames":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The alternate name."},"languageCode":{"type":"string","description":"The ISO 639 language code (e.g. 'eng', 'hin', 'deu')."}},"required":["name","languageCode"]},"description":"The alternate or local names for the subdivision."}},"required":["code","name","type","alternateNames"]}}},"required":["countryCode","subdivisions"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/technologies":{"get":{"operationId":"getTechnologies","summary":"List technologies","tags":["Enums"],"description":"Get all searchable technologies and platforms with their synonyms. Useful for the technology search API.\n\n<span>⚡ <strong>Rate limit:</strong> 50 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":50,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"technology":{"type":"string","minLength":1,"description":"Canonical slug for this technology or platform"},"synonyms":{"type":"array","items":{"type":"string","minLength":1},"description":"Human-readable names and variants"},"category":{"type":["string","null"],"description":"Technology category (e.g. CMS, CRM, Analytics)"},"type":{"type":"string","enum":["technology","platform"],"description":"Whether this is a technology or a platform"}},"required":["technology","synonyms","type"]}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/skills":{"get":{"operationId":"getSkills","summary":"List skills","tags":["Enums"],"description":"Get the most common professional skills across profiles. Returns up to 1,000 skill names sorted by popularity. Useful for building skill-based search filters.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"string","minLength":1,"description":"A professional skill name"}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/flight-regions":{"get":{"operationId":"getFlightRegions","summary":"List flight region aliases","tags":["Enums"],"description":"List every supported `X-` flight region alias along with its metro name and the IATA airport codes it covers. Pass `apiCode` as `departureAirports` / `arrivalAirports` in `POST /v1/flights/search` to search across an entire metro area in one call.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"regions":{"type":"array","items":{"type":"object","properties":{"apiCode":{"type":"string","description":"Alias to use as `departureAirports` / `arrivalAirports` to target this entire metro (e.g. 'X-NYC')."},"name":{"type":"string","description":"Human-readable metro name (e.g. 'New York City')."},"airportIataCodes":{"type":"array","items":{"type":"string","pattern":"^[A-Z]{3}$"},"minItems":1,"description":"IATA codes covered by this metro alias (e.g. 'JFK', 'LGA', 'EWR')."},"freebaseId":{"type":"string","pattern":"^\\/(?:m|g)\\/[A-Za-z0-9_]+$","description":"Stable identifier for this metro. Also accepted as `departureAirports` / `arrivalAirports`."}},"required":["apiCode","name","airportIataCodes","freebaseId"],"description":"A flight region alias covering one metropolitan area's airports."},"minItems":1,"description":"All supported flight region aliases."}},"required":["regions"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/hotels/amenities":{"get":{"operationId":"getHotelAmenities","summary":"List hotel amenity filters","tags":["Enums"],"description":"List supported hotel amenity filter identifiers for use in `amenities` on POST /v1/hotels/search.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"amenities":{"type":"array","items":{"type":"object","properties":{"id":{"type":"integer","description":"Amenity identifier for use in search filters."},"name":{"type":"string","description":"Amenity display name."}},"required":["id","name"],"description":"A supported hotel amenity filter value."},"minItems":1,"description":"All supported hotel amenity filter values."}},"required":["amenities"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/hotels/property-types":{"get":{"operationId":"getHotelPropertyTypes","summary":"List hotel property type filters","tags":["Enums"],"description":"List supported hotel property type filter identifiers for use in `propertyTypes` on POST /v1/hotels/search.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"propertyTypes":{"type":"array","items":{"type":"object","properties":{"id":{"type":"integer","description":"Property type identifier for search filters."},"name":{"type":"string","description":"Property type display name."}},"required":["id","name"],"description":"A supported hotel property type filter value."},"minItems":1,"description":"All supported hotel property type filter values."}},"required":["propertyTypes"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/hotels/brands":{"get":{"operationId":"getHotelBrands","summary":"List hotel brand filters","tags":["Enums"],"description":"List supported hotel brand filter identifiers for use in `brands` on POST /v1/hotels/search.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"brands":{"type":"array","items":{"type":"object","properties":{"id":{"type":"integer","description":"Brand group identifier for search filters."},"name":{"type":"string","description":"Brand group display name."},"children":{"type":"array","items":{"type":"object","properties":{"id":{"type":"integer","description":"Brand identifier."},"name":{"type":"string","description":"Brand display name."}},"required":["id","name"]},"description":"Sub-brands within this group."}},"required":["id","name","children"],"description":"A supported hotel brand filter value."},"minItems":1,"description":"All supported hotel brand filter values."}},"required":["brands"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/metro-areas":{"get":{"operationId":"getMetroAreas","summary":"List preset metro areas","tags":["Enums"],"description":"List all preset metro area regions available for geographic filtering. Each region includes a slug (usable with the `preset-region` strategy in location-based search endpoints), geometry (center + radius for circles, vertices for polygons), major cities, and synonyms for fuzzy matching.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"metroAreas":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["circle"]},"slug":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]},"name":{"type":"string"},"emoji":{"type":"string"},"countryCode":{"type":"string","minLength":3,"maxLength":3},"cities":{"type":"array","items":{"type":"string"},"maxItems":5},"synonyms":{"type":"array","items":{"type":"string"}},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180},"radiusMiles":{"type":"number","minimum":0,"maximum":12500}},"required":["type","slug","name","emoji","countryCode","cities","synonyms","latitude","longitude","radiusMiles"]},{"type":"object","properties":{"type":{"type":"string","enum":["polygon"]},"slug":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]},"name":{"type":"string"},"emoji":{"type":"string"},"countryCode":{"type":"string","minLength":3,"maxLength":3},"cities":{"type":"array","items":{"type":"string"},"maxItems":5},"synonyms":{"type":"array","items":{"type":"string"}},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["type","slug","name","emoji","countryCode","cities","synonyms","vertices"]}]},"description":"All available preset metro area regions. Use the slug with the preset-region strategy in location-based search endpoints."}},"required":["metroAreas"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/create":{"post":{"operationId":"createAudience","summary":"Create a new audience","tags":["Audiences"],"description":"Creates a new audience in DRAFT status. After creation, use the update-search-params endpoint to set filters, then use the build endpoint to populate the audience with companies and prospects.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","minLength":1,"maxLength":200,"description":"The name of the audience (e.g. 'Fintech VPs in NYC')."},"creationMethod":{"type":["string","null"],"enum":["NORMAL","START_FROM_PROSPECTS",null],"default":"NORMAL","description":"How the audience will be created. NORMAL: search companies then prospects. START_FROM_PROSPECTS: search prospects only."}},"required":["apiKey","name"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The unique ID of the created audience."},"name":{"type":"string","description":"The name of the audience."},"status":{"type":"string","enum":["NORMAL","HEALING_COMPANIES","DRAFT","BUILDING","SAVING_COMPANIES","SAVING_PROSPECTS","LINKING_PROSPECTS_WITH_COMPANIES","FAILED"],"description":"The current status of the audience."},"createdAt":{"type":"string","description":"The timestamp when the audience was created."}},"required":["audienceId","name","status","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/status":{"get":{"operationId":"getAudienceStatus","summary":"Get audience status","tags":["Audiences"],"description":"Gets the status and basic statistics of an audience. Use this to poll for build completion after triggering a build. Status values: DRAFT (waiting for configuration), BUILDING (search in progress), NORMAL (ready to use), FAILED (build failed). Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The unique ID of the audience."},"name":{"type":"string","description":"The name of the audience."},"status":{"type":"string","enum":["NORMAL","HEALING_COMPANIES","DRAFT","BUILDING","SAVING_COMPANIES","SAVING_PROSPECTS","LINKING_PROSPECTS_WITH_COMPANIES","FAILED"],"description":"The current status of the audience."},"creationMethod":{"type":"string","enum":["NORMAL","COMPANY_UPLOAD","PROSPECT_UPLOAD","START_FROM_PROSPECTS","FOLLOW_ME","INDIVIDUAL_SALES_NAV_SCRAPE","MERGE_AUDIENCES","BATCH_ENRICHMENT","CLONED","SALES_NAV_COMPANIES","SALES_NAV_PROFILES"],"description":"The method used to create the audience."},"createdAt":{"type":"string","description":"The timestamp when the audience was created."},"buildingStartedAt":{"type":["string","null"],"description":"The timestamp when the audience build started."},"buildingFinishedAt":{"type":["string","null"],"description":"The timestamp when the audience build finished."},"companiesCount":{"type":["number","null"],"description":"The number of companies in the audience."},"prospectsCount":{"type":["number","null"],"description":"The number of prospects in the audience."}},"required":["audienceId","name","status","creationMethod","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}":{"delete":{"operationId":"deleteAudience","summary":"Archive an audience","tags":["Audiences"],"description":"Archives an audience by hiding it from the user. The audience and its data are preserved for audit trail and enrichment history. Audiences that are currently BUILDING cannot be archived. Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The ID of the archived audience."},"archived":{"type":"boolean","description":"Whether the audience was successfully archived.","enum":[true]}},"required":["audienceId","archived"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences":{"get":{"operationId":"listAudiences","summary":"List all audiences","tags":["Audiences"],"description":"Lists all audiences for your organization. Returns basic info and counts for each audience. Only visible audiences are returned (hidden system audiences are excluded). Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audiences":{"type":"array","items":{"type":"object","properties":{"audienceId":{"type":"string","description":"The unique ID of the audience."},"name":{"type":"string","description":"The name of the audience."},"status":{"type":"string","enum":["NORMAL","HEALING_COMPANIES","DRAFT","BUILDING","SAVING_COMPANIES","SAVING_PROSPECTS","LINKING_PROSPECTS_WITH_COMPANIES","FAILED"],"description":"The current status of the audience."},"creationMethod":{"type":"string","enum":["NORMAL","COMPANY_UPLOAD","PROSPECT_UPLOAD","START_FROM_PROSPECTS","FOLLOW_ME","INDIVIDUAL_SALES_NAV_SCRAPE","MERGE_AUDIENCES","BATCH_ENRICHMENT","CLONED","SALES_NAV_COMPANIES","SALES_NAV_PROFILES"],"description":"The method used to create the audience."},"createdAt":{"type":"string","description":"The timestamp when the audience was created."},"companiesCount":{"type":"number","description":"The number of companies in the audience."},"prospectsCount":{"type":"number","description":"The number of prospects in the audience."}},"required":["audienceId","name","status","creationMethod","createdAt","companiesCount","prospectsCount"]}},"totalCount":{"type":"number","description":"The total number of audiences."}},"required":["audiences","totalCount"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/companies":{"get":{"operationId":"getAudienceCompanies","summary":"Get companies in an audience","tags":["Audiences"],"description":"Gets the companies in an audience with pagination. Use the nextCursor from the response to fetch the next page. Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"integer","exclusiveMinimum":0,"maximum":500,"default":100},"in":"query","name":"pageSize","description":"The number of companies to return per page (max 500)."},{"schema":{"type":["string","null"]},"in":"query","name":"cursor","description":"The pagination cursor from the previous page."},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The ID of the audience."},"companies":{"type":"array","items":{"type":"object","properties":{"companyId":{"type":"string","description":"The unique ID of the company."},"name":{"type":["string","null"],"description":"The company name."},"linkedinUrl":{"type":["string","null"],"description":"The company LinkedIn URL."},"domain":{"type":["string","null"],"description":"The company domain."},"industry":{"type":["string","null"],"description":"The company industry."},"headcount":{"type":["number","null"],"description":"The employee count."}},"required":["companyId"]},"description":"The list of companies."},"totalCount":{"type":"number","description":"The total number of companies in the audience."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page."},"hasMore":{"type":"boolean","description":"Whether there are more results available."}},"required":["audienceId","companies","totalCount","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/prospects":{"get":{"operationId":"getAudienceProspects","summary":"Get prospects in an audience","tags":["Audiences"],"description":"Gets the prospects (people) in an audience with pagination. Use the nextCursor from the response to fetch the next page. Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"integer","exclusiveMinimum":0,"maximum":500,"default":100},"in":"query","name":"pageSize","description":"The number of prospects to return per page (max 500)."},{"schema":{"type":["string","null"]},"in":"query","name":"cursor","description":"The pagination cursor from the previous page."},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The ID of the audience."},"prospects":{"type":"array","items":{"type":"object","properties":{"prospectId":{"type":"string","description":"The unique ID of the prospect."},"firstName":{"type":["string","null"],"description":"The prospect's first name."},"lastName":{"type":["string","null"],"description":"The prospect's last name."},"linkedinUrl":{"type":["string","null"],"description":"The prospect's LinkedIn URL."},"jobTitle":{"type":["string","null"],"description":"The prospect's job title."},"companyName":{"type":["string","null"],"description":"The prospect's current company name."},"location":{"type":["string","null"],"description":"The prospect's location."}},"required":["prospectId"]},"description":"The list of prospects."},"totalCount":{"type":"number","description":"The total number of prospects in the audience."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page."},"hasMore":{"type":"boolean","description":"Whether there are more results available."}},"required":["audienceId","prospects","totalCount","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/search-params":{"patch":{"operationId":"updateAudienceSearchParams","summary":"Set audience search parameters","tags":["Audiences"],"description":"Updates the search parameters (filters) for an audience. You can set company filters (e.g., industry, headcount) and prospect filters (e.g., job title, location). This endpoint converts the API-friendly search parameters into the internal format used by the search engine. The audience must be in DRAFT status.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companySearchParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"The search parameters to filter companies."},"prospectSearchParams":{"type":["object","null"],"properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"The search parameters to filter prospects.","default":{}}},"required":["apiKey"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The unique ID of the audience."},"companySearchParams":{"type":["object","null"],"additionalProperties":true,"description":"The updated company search parameters."},"prospectSearchParams":{"type":["object","null"],"additionalProperties":true,"description":"The updated prospect search parameters."}},"required":["audienceId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/enrichment/status":{"get":{"operationId":"getEnrichmentStatus","summary":"Get enrichment status","tags":["Audiences"],"description":"Gets the current status of an audience enrichment run. Returns progress information including current stage, progress percentage, completed steps, and remaining steps. Use this endpoint to poll for enrichment completion. Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"enrichmentId":{"type":"string","description":"The unique ID of the enrichment run."},"currentStage":{"type":"string","enum":["NOT_STARTED","STARTED","RUNNING_SALES_NAV","RUNNING_LIVE_ENRICH","RESUBMITTING_AUDIENCE","CLEANING_NAMES","FETCHING_CONTACT_DETAILS","VALIDATING_CONTACT_DETAILS","EXPORTING_CSV","DONE","FAILED"],"description":"The current stage of the enrichment process."},"progressPercent":{"type":"number","minimum":0,"maximum":100,"description":"The progress percentage (0-100)."},"stepsCompleted":{"type":"array","items":{"type":"string"},"description":"The list of completed step names."},"currentStep":{"type":["string","null"],"description":"The name of the current step being executed."},"stepsRemaining":{"type":"array","items":{"type":"string"},"description":"The list of remaining step names."},"createdAt":{"type":"string","description":"The timestamp when the enrichment was created."},"completedAt":{"type":["string","null"],"description":"The timestamp when the enrichment completed."}},"required":["enrichmentId","currentStage","progressPercent","stepsCompleted","stepsRemaining","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/enrichment/estimate":{"post":{"operationId":"estimateEnrichmentCost","summary":"Estimate enrichment cost","tags":["Audiences"],"description":"Estimates the credit cost for an audience enrichment run before triggering it. Returns detailed breakdown by operation type (Sales Navigator, live enrichment, contact enrichment, validation) and estimated completion time. This endpoint is free and does not charge any credits.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"maxProspectsToEnrich":{"type":"integer","exclusiveMinimum":0,"description":"Maximum number of prospects to include when estimating enrichment cost (must be a positive integer; very large values may be rejected by internal safety limits)."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"Enrichment types to estimate costs for"},"runCompanyLiveEnrichment":{"type":"boolean","default":true,"description":"Whether to include company live enrichment in estimate"},"runProfileLiveEnrichment":{"type":"boolean","default":true,"description":"Whether to include profile live enrichment in estimate"},"runProfileSalesNav":{"type":"boolean","default":true,"description":"Whether to include Sales Navigator enrichment in estimate"},"runContactEnrichment":{"type":"boolean","default":true,"description":"Whether to include contact enrichment in estimate"}},"required":["apiKey","maxProspectsToEnrich","enrichmentType"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"totalCredits":{"type":"number","description":"The total estimated credits required."},"breakdown":{"type":"object","properties":{"salesNav":{"type":"object","properties":{"credits":{"type":"number"},"isFree":{"type":"boolean"}},"required":["credits","isFree"],"description":"Sales Navigator enrichment cost"},"liveCompany":{"type":"object","properties":{"credits":{"type":"number"},"discounted":{"type":"boolean"}},"required":["credits","discounted"],"description":"Company live enrichment cost"},"liveProspect":{"type":"object","properties":{"credits":{"type":"number"},"discounted":{"type":"boolean"}},"required":["credits","discounted"],"description":"Prospect live enrichment cost"},"waterfall":{"type":"object","properties":{"credits":{"type":"number"},"originalCredits":{"type":"number"},"discount":{"type":"number"},"operations":{"type":"object","properties":{"workEmail":{"type":"number"},"personalEmail":{"type":"number"},"phone":{"type":"number"}},"required":["workEmail","personalEmail","phone"]}},"required":["credits","originalCredits","discount","operations"],"description":"Waterfall pricing for contact enrichment"},"validation":{"type":"object","properties":{"credits":{"type":"number"},"isFree":{"type":"boolean"}},"required":["credits","isFree"],"description":"Email validation cost"}},"required":["salesNav","liveCompany","liveProspect","waterfall","validation"],"description":"The detailed cost breakdown by operation type."},"timeEstimate":{"type":"object","properties":{"totalSeconds":{"type":"number"},"formatted":{"type":"string"}},"required":["totalSeconds","formatted"],"description":"The estimated time to complete enrichment."}},"required":["totalCredits","breakdown","timeEstimate"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/export/companies":{"post":{"operationId":"exportCompanies","summary":"Export audience companies to CSV","tags":["Audiences"],"description":"Triggers CSV export of companies in an audience. The export runs asynchronously - CSV links will be sent to the provided email address (if userEmail is provided) or returned in the API response. Export quota limits apply per usage period.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"format":{"type":"string","enum":["PROSPECT_GENERIC_CSV","PROSPECT_LI_ADS_CSV","PROSPECT_GOOGLE_ADS_CSV","PROSPECT_META_ADS_CSV","COMPANY_GENERIC_CSV","COMPANY_LI_ADS_CSV","LI_PROFILE_URL_FIXUP","LI_COMPANY_URL_FIXUP","GOOGLE_MAPS_CSV","DOMAIN_AGENT_CSV","MOSAIC_CSV"],"description":"The format of the exported file."},"maxRowsToExport":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of rows to export. Defaults to remaining export quota."},"excludeFields":{"type":"array","items":{"type":"string","enum":["fiber_id","name","all_names","website","domain","linkedin_url","linkedin_org_id","logo_url","headline","description","standard_industries","linkedin_industries","naics_codes","hq_full_address","hq_street_address","hq_city","hq_state","hq_country","hq_country_code","hq_latitude","hq_longitude","num_offices","all_office_addresses","office_countries","category","employee_count_lower","employee_count_upper","founded_on","num_followers","office_locations","office_locations_raw","funding_stage","last_funded_at","last_funding_usd","total_funding_usd","market_cap_usd","revenue_usd","accelerators","investors","acquisitions","funding_rounds","stock_ticker","num_exits","tags","job_posting_stats","specialties","phone_numbers","facebook_urls","x_urls","github_usernames","wellfound_urls","blog_urls","instagram_urls","youtube_urls","short_description","long_description","roles","primary_role","is_subsidiary","parent","matching_job_posting_urls","matching_job_postings_json","matching_job_postings_titles","num_matching_job_postings","num_role_matches","custom"]},"default":[],"description":"The fields to exclude from the export."},"userEmail":{"type":["string","null"],"format":"email","description":"Optional email address to receive CSV export links. If not provided, no email will be sent."}},"required":["apiKey","format"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"message":{"type":"string","description":"A human-readable message about the export status."},"estimatedRows":{"type":"number","description":"The estimated number of rows that will be exported."},"maxRowsAllowed":{"type":"number","description":"The maximum rows allowed based on the export quota."}},"required":["message","estimatedRows","maxRowsAllowed"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/export/prospects":{"post":{"operationId":"exportProspects","summary":"Export audience prospects to CSV","tags":["Audiences"],"description":"Triggers CSV export of prospects (people) in an audience. The export runs asynchronously - CSV links will be sent to the provided email address (if userEmail is provided) or returned in the API response. Export quota limits apply per usage period. Optionally filter to only export prospects with verified emails or phones.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"format":{"type":"string","enum":["PROSPECT_GENERIC_CSV","PROSPECT_LI_ADS_CSV","PROSPECT_GOOGLE_ADS_CSV","PROSPECT_META_ADS_CSV","COMPANY_GENERIC_CSV","COMPANY_LI_ADS_CSV","LI_PROFILE_URL_FIXUP","LI_COMPANY_URL_FIXUP","GOOGLE_MAPS_CSV","DOMAIN_AGENT_CSV","MOSAIC_CSV"],"description":"The format of the exported file."},"maxRowsToExport":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of rows to export. Defaults to remaining export quota."},"excludeFields":{"type":"array","items":{"type":"string","enum":["fiber_id","first_name","last_name","full_name","profile_url","company","company_domain","company_description","company_linkedin_url","work_location","employment_type","job_title","headline","summary","job_summary","job_start_date","months_in_current_job","months_in_current_company","city","state","country","country_code","timezone","latitude","longitude","work_email_1","work_email_2","personal_email_1","personal_email_2","other_emails","emails_verified","phone_number_1","phone_number_2","other_phone_numbers","profile_pic_url","num_followers","num_connections","age","education","years_of_experience","num_jobs","past_jobs","languages","tags","skills","tenures","industry","past_jobs_raw","job_academic_qualifications","job_seniority","job_function","certifications","certifications_raw","patents","patents_raw","articles","articles_raw","num_recommendations_received","volunteering","volunteering_raw","projects","projects_raw","tenures_raw","courses","courses_raw","is_in_stealth","publications","publications_raw","company_hq_city","company_hq_state","company_hq_country","company_hq_country_code","company_hq_latitude","company_hq_longitude","company_stock_ticker","company_employee_trends","company_founding_date","company_employee_count_lower","company_employee_count_upper","company_industries","company_num_followers","company_naics_codes","company_funding_rounds","company_funding_stage","company_total_funding_usd","company_last_funded_at","company_last_funding_usd","company_revenue_usd","company_investors","company_tags","company_market_cap_usd","company_office_countries","company_num_offices","company_accelerators","company_job_posting_stats","custom"]},"default":[],"description":"The fields to exclude from the export."},"onlyWithContacts":{"type":"boolean","default":false,"description":"If true, only export prospects with verified emails or phones"},"userEmail":{"type":["string","null"],"format":"email","description":"Optional email address to receive CSV export links. If not provided, no email will be sent."}},"required":["apiKey","format"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"message":{"type":"string","description":"A human-readable message about the export status."},"estimatedRows":{"type":"number","description":"The estimated number of rows that will be exported."},"maxRowsAllowed":{"type":"number","description":"The maximum rows allowed based on the export quota."}},"required":["message","estimatedRows","maxRowsAllowed"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-search":{"post":{"operationId":"companySearch","summary":"Company search","tags":["Search"],"description":"Search for companies using filters\n\n<span>⚡ <strong>Rate limit:</strong> 180 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per company found, plus 1 credit when includeCount=true&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Count credits only apply when the includeCount flag is set.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Search parameters for company search API."},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"The number of companies to return per page."},"cursor":{"type":["string","null"],"description":"A pagination cursor returned from a previous search response. Use this to fetch the next page of results."},"companyExclusionListIDs":{"type":"array","items":{"type":"string"},"default":[],"description":"The IDs of company exclusion lists to filter out matching companies."},"includeCount":{"type":["boolean","null"],"description":"When true, returns an estimated total count of matching companies in the response and charges one additional count credit. The count does not account for exclusion lists."}},"required":["apiKey","searchParams"]}}}},"x-rate-limit":{"max":180,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per company found, plus 1 credit when includeCount=true","variableCosts":[{"credits":1,"perUnit":"company found","operation":"getCompanyFromDb"},{"credits":1,"perUnit":"request","operation":"getCompanyCountFromDb"}],"comment":"Count credits only apply when the includeCount flag is set.","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}}},"estimatedCount":{"type":["number","null"],"description":"The estimated total number of companies who match your search parameters. Note that this does not account for exclusion lists."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page. Provide this in the next request to continue paginating."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-count":{"post":{"operationId":"companyCount","summary":"Company count","tags":["Search"],"description":"Get count of companies matching search filters\n\n<span>⚡ <strong>Rate limit:</strong> 180 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Search parameters for company search API."},"companyExclusionListIDs":{"type":"array","items":{"type":"string"},"default":[],"description":"The IDs of company exclusion lists to filter out matching companies."}},"required":["apiKey","searchParams"]}}}},"x-rate-limit":{"max":180,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getCompanyCountFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"count":{"type":"number","description":"The number of companies matching the search filters."}},"required":["count"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-search":{"post":{"operationId":"jobPostingSearch","summary":"Job postings search","tags":["Search"],"description":"Search for job postings with flexible filtering capabilities\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per job posting found&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"companies":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"array","items":{"type":"string","minLength":1},"description":"Array of LinkedIn company slugs (e.g., ['microsoft'])"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"array","items":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"A domain, like 'example.com' or 'https://example.com'"},"description":"Array of company domains (e.g., ['microsoft.com'])"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"array","items":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?:[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'"},"description":"Array of LinkedIn company URLs, e.g., https://www.linkedin.com/company/microsoft/"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"array","items":{"type":"string","pattern":"^\\d+$","description":"A LinkedIn organization ID (numeric string), e.g., '1035' for Microsoft"},"description":"Array of LinkedIn organization IDs (numeric strings), e.g., '1035' for Microsoft"}},"required":["identifier","value"]},{"type":"null"}],"description":"Filter jobs by one type of company identifier with array values"},"title":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"Array of job titles for partial match (e.g., 'Software Engineer', 'Manager')"},"isActive":{"type":["string","null"],"enum":["true","false","no_preference",null],"description":"Filter by job status: true=active, false=closed, no_preference=both"},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Filter by job posting date (supports relative and absolute dates)"},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by number of applicants (range)"},"jobFunctions":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"description":"Array of job functions"},"industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"description":"Array of industries"},"annualSalaryUsd":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by annual salary range in USD"},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by years of experience required"},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]},"description":"Lets you find jobs that are on-site, remote, or hybrid. Pass several values to match any of them."},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]},"description":"Deprecated. Use jobModality instead.","deprecated":true},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"description":"Array of employment types (e.g., Full-time, Part-time, Contract, Internship)"},"seniorityLevel":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive"]},"description":"Array of seniority levels (e.g., Entry level, Mid-Senior level, Director)"},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]},"description":"Array of country or region codes (e.g., USA, IND, X-ANGLOSPHERE)"}},"additionalProperties":false,"description":"Job search filter parameters"},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"Number of jobs to return per page (max 1000)"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching next page of results"}},"required":["apiKey","searchParams"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per job posting found","variableCosts":[{"credits":1,"perUnit":"job posting found","operation":"getJobPostingFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"job_id":{"type":"string","description":"Unique job identifier"},"title":{"type":["string","null"],"description":"Job title/position"},"company_name":{"type":["string","null"],"description":"Company name"},"company_logo_url":{"type":["string","null"],"format":"uri","description":"Company logo URL"},"posted_at":{"type":["string","null"],"description":"When the job was posted"},"job_url":{"type":["string","null"],"format":"uri","description":"LinkedIn job URL"},"applicant_range":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}},"description":"Applicant count range"},"description":{"type":["string","null"],"description":"Job description text"},"seniority_level":{"type":["string","null"],"description":"Seniority level (e.g., 'Entry level', 'Senior level')"},"employment_type":{"type":["string","null"],"description":"Employment type (e.g., 'Full-time', 'Part-time')"},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"description":"Job function categories"},"raw_industries":{"type":["string","null"],"description":"Raw industries string from LinkedIn"},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"description":"Standardized industry categories"},"compensation_range":{"type":["object","null"],"properties":{"lte":{"type":["object","null"],"properties":{"currencyUnit":{"type":"string","description":"These are just currency symbols, like CA$ or £"},"number":{"type":"number"},"period":{"type":"string","enum":["hr","m","yr","daily"]}},"required":["currencyUnit","number","period"]},"gte":{"type":["object","null"],"properties":{"currencyUnit":{"type":"string","description":"These are just currency symbols, like CA$ or £"},"number":{"type":"number"},"period":{"type":"string","enum":["hr","m","yr","daily"]}},"required":["currencyUnit","number","period"]}},"description":"Structured compensation range with currency and period"},"annual_salary_usd":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}},"description":"Annual salary approximation in USD"},"years_of_experience":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}},"description":"Years of experience required"},"standardized_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}},"description":"Standardized location with geo data including lat/lon"},"job_location_type":{"type":["string","null"],"enum":["On-site","Remote","Hybrid",null],"description":"Deprecated. Use modality instead.","deprecated":true},"modality":{"type":["string","null"],"enum":["On-site","Remote","Hybrid",null],"description":"Whether the job is on-site, remote, or hybrid."},"status":{"type":"string","enum":["active","closed"],"description":"Job status"}},"required":["job_id","status"]},"description":"Array of job postings matching the search criteria"},"nextCursor":{"type":["string","null"],"description":"Cursor for fetching the next page of results. Null if no more results available"}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-search/count":{"post":{"operationId":"jobPostingSearchCount","summary":"Job postings count","tags":["Search"],"description":"Get count of job postings matching search filters\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"companies":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"array","items":{"type":"string","minLength":1},"description":"Array of LinkedIn company slugs (e.g., ['microsoft'])"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"array","items":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"A domain, like 'example.com' or 'https://example.com'"},"description":"Array of company domains (e.g., ['microsoft.com'])"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"array","items":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?:[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'"},"description":"Array of LinkedIn company URLs, e.g., https://www.linkedin.com/company/microsoft/"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"array","items":{"type":"string","pattern":"^\\d+$","description":"A LinkedIn organization ID (numeric string), e.g., '1035' for Microsoft"},"description":"Array of LinkedIn organization IDs (numeric strings), e.g., '1035' for Microsoft"}},"required":["identifier","value"]},{"type":"null"}],"description":"Filter jobs by one type of company identifier with array values"},"title":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"Array of job titles for partial match (e.g., 'Software Engineer', 'Manager')"},"isActive":{"type":["string","null"],"enum":["true","false","no_preference",null],"description":"Filter by job status: true=active, false=closed, no_preference=both"},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Filter by job posting date (supports relative and absolute dates)"},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by number of applicants (range)"},"jobFunctions":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"description":"Array of job functions"},"industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"description":"Array of industries"},"annualSalaryUsd":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by annual salary range in USD"},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by years of experience required"},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]},"description":"Lets you find jobs that are on-site, remote, or hybrid. Pass several values to match any of them."},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]},"description":"Deprecated. Use jobModality instead.","deprecated":true},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"description":"Array of employment types (e.g., Full-time, Part-time, Contract, Internship)"},"seniorityLevel":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive"]},"description":"Array of seniority levels (e.g., Entry level, Mid-Senior level, Director)"},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]},"description":"Array of country or region codes (e.g., USA, IND, X-ANGLOSPHERE)"}},"additionalProperties":false,"description":"Job search filter parameters"}},"required":["apiKey","searchParams"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getJobPostingCountFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"totalJobsFound":{"type":"integer","minimum":0,"description":"Total number of jobs matching the search criteria"}},"required":["totalJobsFound"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/people-search":{"post":{"operationId":"peopleSearch","summary":"People search","tags":["Search"],"description":"Search for people using filters\n\n<span>⚡ <strong>Rate limit:</strong> 180 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per profile found, plus 1 credit when includeCount=true&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Count credits only apply when the includeCount flag is set.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"Search parameters for people search.","default":{}},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"The number of profiles to return, if you need to get more results, you can paginate."},"cursor":{"type":["string","null"],"description":"A pagination cursor returned from a previous search response. Use this to fetch the next page of results."},"currentCompanies":{"type":["array","null"],"items":{"type":"object","properties":{"domain":{"type":["string","null"],"description":"Company domain, like 'google.com'. Don't include 'https://', path fragments like '/about', or URL query parameters. If provided, we will not strip them out. This may be useful if your company page is like `instagram.com/google`."},"linkedinSlugOrURL":{"type":["string","null"],"description":"The company's linkedin slug or URL"},"name":{"type":["string","null"],"description":"The company's name as present in LinkedIn. This would do partial matches as well, eg. `Fiber AI` matches with `Fiber AI (YC S23)`. Try not to rely on this field as it will simply be doing a loose name match. We recommend that you use the domain or LI slug if available."},"linkedinOrgID":{"type":["string","null"],"description":"The company's LinkedIn Organization ID, eg. 1441 for google"}}},"maxItems":10000,"default":[],"description":"Filter people by the companies they are currently working for. If you want to search over many companies, we suggest using the Combined Search API, which is optimized for this use case."},"prospectExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"default":[],"description":"Filter out people which belong to the given prospect exclusion lists"},"companyExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"default":[],"description":"Filter out people who work at companies which belong to the given company exclusion lists"},"includeCount":{"type":["boolean","null"],"description":"When true, returns an estimated total count of matching prospects in the response and charges one additional count credit. The count does not account for exclusion lists."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":180,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per profile found, plus 1 credit when includeCount=true","variableCosts":[{"credits":1,"perUnit":"profile found","operation":"getPersonFromDb"},{"credits":1,"perUnit":"request","operation":"getPersonCountFromDb"}],"comment":"Count credits only apply when the includeCount flag is set.","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]}},"estimatedCount":{"type":["number","null"],"description":"The estimated total number of people who match your search parameters. Note that this does not account for exclusion lists."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page. Provide this in the next request to continue paginating."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/people-search/count":{"post":{"operationId":"peopleSearchCount","summary":"People search count","tags":["Search"],"description":"Get count of profiles matching search filters\n\n<span>⚡ <strong>Rate limit:</strong> 180 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"Search parameters for people search.","default":{}},"currentCompanies":{"type":["array","null"],"items":{"type":"object","properties":{"domain":{"type":["string","null"],"description":"Company domain, like 'google.com'. Don't include 'https://', path fragments like '/about', or URL query parameters. If provided, we will not strip them out. This may be useful if your company page is like `instagram.com/google`."},"linkedinSlugOrURL":{"type":["string","null"],"description":"The company's linkedin slug or URL"},"name":{"type":["string","null"],"description":"The company's name as present in LinkedIn. This would do partial matches as well, eg. `Fiber AI` matches with `Fiber AI (YC S23)`. Try not to rely on this field as it will simply be doing a loose name match. We recommend that you use the domain or LI slug if available."},"linkedinOrgID":{"type":["string","null"],"description":"The company's LinkedIn Organization ID, eg. 1441 for google"}}},"maxItems":10000,"default":[],"description":"Filter people by the companies they are currently working for. If you want to search over many companies, we suggest using the Combined Search API, which is optimized for this use case."},"prospectExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"default":[],"description":"Filter out people which belong to the given prospect exclusion lists"},"companyExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"default":[],"description":"Filter out people who work at companies which belong to the given company exclusion lists"},"includeCount":{"type":["boolean","null"],"description":"When true, returns an estimated total count of matching prospects in the response and charges one additional count credit. The count does not account for exclusion lists."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":180,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getPersonCountFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"totalProfilesFound":{"type":"integer","minimum":0,"description":"Total number of profiles matching the search criteria including exclusion lists"}},"required":["totalProfilesFound"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/combined-search/paginated":{"post":{"operationId":"paginatedCombinedSearch","summary":"Combined people + company search","tags":["Search"],"description":"Search for companies and profiles together. Returns results page by page using cursor-based pagination. Each entity type (companies, profiles) has its own cursor, so you can paginate them independently.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Credits are charged per page based on results: 1 credits per company found and 1 credits per profile found.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Your total charge will vary based on the number of companies and profiles returned in your results.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companyConfig":{"type":["object","null"],"properties":{"searchParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"The company search parameters. Prospects are found from companies matching these filters."},"pageSize":{"type":["number","null"],"maximum":100,"description":"The number of companies to return per page. Pass null if you only want profiles. NOTE: your companies search params will still get honored to find the profiles."},"exclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"description":"The IDs of company exclusion lists to filter out matching companies."},"companyCursor":{"type":["string","null"]}},"required":["searchParams"]},"profileConfig":{"type":["object","null"],"properties":{"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"The profile search parameters. Returns profiles matching these filters who work at companies satisfying companyParams.","default":{}},"pageSize":{"type":"number","maximum":100,"description":"The number of profiles to return per page."},"exclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"description":"The IDs of prospect exclusion lists to filter out matching people."},"profileCursor":{"type":["string","null"]}},"required":["pageSize"]}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"Credits are charged per page based on results: 1 credits per company found and 1 credits per profile found.","variableCosts":[{"credits":1,"perUnit":"company found","operation":"getCompanyFromDb"},{"credits":1,"perUnit":"profile found","operation":"getPersonFromDb"}],"comment":"Your total charge will vary based on the number of companies and profiles returned in your results.","chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"companies":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}}},"profiles":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]}},"nextCompaniesCursor":{"type":["string","null"],"description":"Pass this as companiesCursor in a subsequent request to get the next page of companies. Null when there are no more companies to return."},"nextProfilesCursor":{"type":["string","null"],"description":"Pass this as profilesCursor in a subsequent request to get the next page of profiles. Null when there are no more profiles to return."}},"required":["companies","profiles"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-logos/bulk":{"post":{"operationId":"bulkCompanyLogos","summary":"Bulk company logos","tags":["Company info"],"description":"Get logo URLs for a list of companies. Max 10,000 companies can be looked up at a time.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 0.33 credits per company logo lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companiesIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domains"]},"domains":{"type":"array","items":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"A domain, like 'example.com' or 'https://example.com'"},"minItems":1,"maxItems":10000}},"required":["type","domains"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedinUrls"]},"linkedinUrls":{"type":"array","items":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?:[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'"},"minItems":1,"maxItems":10000}},"required":["type","linkedinUrls"]},{"type":"object","properties":{"type":{"type":"string","enum":["liOrgIds"]},"liOrgIds":{"type":"array","items":{"type":"string"},"minItems":1,"maxItems":10000}},"required":["type","liOrgIds"]}],"description":"The list of companies to get the logo for. Include any of domain, linkedinUrl, or liOrgId. Max 10000 companies can be added at a time."}},"required":["apiKey","companiesIdentifier"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"0.33 credits per company logo lookup","variableCosts":[{"credits":0.3333333333333333,"perUnit":"company logo lookup","operation":"bulkCompanyLogoLookup"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domains"]},"data":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"The domain of the company"},"logoUrl":{"type":"string","format":"uri","description":"The logo URL"}},"required":["domain","logoUrl"]},"maxItems":10000}},"required":["type","data"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedinUrls"]},"data":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?:[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"The linkedin URL of the company"},"logoUrl":{"type":"string","format":"uri","description":"The logo URL"}},"required":["linkedinUrl","logoUrl"]},"maxItems":10000}},"required":["type","data"]},{"type":"object","properties":{"type":{"type":"string","enum":["liOrgIds"]},"data":{"type":"array","items":{"type":"object","properties":{"liOrgId":{"type":"string","description":"The linkedin org ID of the company"},"logoUrl":{"type":"string","format":"uri","description":"The logo URL"}},"required":["liOrgId","logoUrl"]},"maxItems":10000}},"required":["type","data"]}],"description":"The list of logo URLs"}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-logos/single":{"post":{"operationId":"companyLogo","summary":"Company logo","tags":["Company info"],"description":"Get the logo for a single company. Accepts a LinkedIn company URL, slug, numeric organization ID, or domain — the format is auto-detected.\n\n<span>⚡ <strong>Rate limit:</strong> 600 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 0.33 credits per company logo lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","minLength":1,"description":"A company identifier: a LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai'), a LinkedIn company slug (e.g. 'openai'), a numeric LinkedIn organization ID (e.g. '11130470'), or a company domain (e.g. 'openai.com'). The format is auto-detected."}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":600,"window":"1 minute"},"x-credit-cost":{"description":"0.33 credits per company logo lookup","variableCosts":[{"credits":0.3333333333333333,"perUnit":"company logo lookup","operation":"bulkCompanyLogoLookup"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"logoUrl":{"type":["string","null"],"format":"uri","description":"A stable URL for the company's logo image. Null when no logo is available for the company."}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/profile-pic/bulk":{"post":{"operationId":"bulkProfilePic","summary":"Bulk profile pics","tags":["Profile info"],"description":"Get profile pics for a list of profiles. Max 10,000 profiles can be looked up at a time.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 0.33 credits per profile pic lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"linkedinUrls":{"type":"array","items":{"type":"string","pattern":"^(?:https?:\\/\\/)?(?:[a-z]+\\.)?linkedin\\.[a-z]{2,}\\/(?:in|sales\\/lead|talent\\/profile)\\/(?:[^/\\\\?,#]+)\\/?(?:[\\?,#].*)?","description":"A LinkedIn URL, like 'https://www.linkedin.com/in/jake'"},"minItems":1,"maxItems":10000}},"required":["apiKey","linkedinUrls"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"0.33 credits per profile pic lookup","variableCosts":[{"credits":0.3333333333333333,"perUnit":"profile pic lookup","operation":"bulkProfilePicLookup"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":"string","pattern":"^(?:https?:\\/\\/)?(?:[a-z]+\\.)?linkedin\\.[a-z]{2,}\\/(?:in|sales\\/lead|talent\\/profile)\\/(?:[^/\\\\?,#]+)\\/?(?:[\\?,#].*)?","description":"The linkedin URL of the profile"},"profilePicFound":{"type":"boolean"},"profilePic":{"type":["string","null"],"description":"The profile pic of the profile"}},"required":["linkedinUrl","profilePicFound","profilePic"]}}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/combined-search/count":{"post":{"operationId":"combinedSearchCount","summary":"Combined search count","tags":["Search"],"description":"Get the total count of companies and people matching the provided search filters. People counts are scoped to those currently or previously working (based on the job status filter) at companies that satisfy the company search filters.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Flat charge for the company count (1 credit) and profile count (1 credit)&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Flat charge\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companyParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"The company search parameters. Prospects are found from companies matching these filters."},"profileParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"The profile search parameters. Returns profiles matching these filters who work/used to work at companies satisfying companyParams.","default":{}},"companyExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"description":"The IDs of company exclusion lists to filter out matching companies."},"prospectExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"description":"The IDs of prospect exclusion lists to filter out matching people."},"getFastEstimate":{"type":"boolean","default":true,"description":"When true, the people count is estimated rather than counted exactly — much faster, but not perfectly accurate. Set to false if you need the exact count (slower)."}},"required":["apiKey","companyParams"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Flat charge for the company count (1 credit) and profile count (1 credit)","variableCosts":[{"credits":1,"perUnit":"request","operation":"getCompanyCountFromDb"},{"credits":1,"perUnit":"request","operation":"getPersonCountFromDb"}],"comment":"Flat charge","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"numCompanies":{"type":"number"},"numProfiles":{"type":"number"}},"required":["numCompanies","numProfiles"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-resolve":{"post":{"operationId":"quickCompanyResolve","summary":"Quickly resolve company identifiers","tags":["Search"],"description":"Resolves many company identifiers — LinkedIn slug, LinkedIn organization ID, LinkedIn company URL, or domain — to full company records in a single request.\n\n<span>⚡ <strong>Rate limit:</strong> 1500 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per company resolved&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companies":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]}]},"minItems":1,"maxItems":100,"description":"Companies to resolve. Each entry is an { identifier, value } pair where identifier is \"linkedinSlug\", \"linkedinOrgId\", \"linkedinUrl\", or \"domain\". Max 100 per request. You are charged only for the ones that resolve."}},"required":["apiKey","companies"]}}}},"x-rate-limit":{"max":1500,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per company resolved","variableCosts":[{"credits":1,"perUnit":"company resolved","operation":"getCompanyFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl","linkedinSlug","linkedinOrgId","domain"],"description":"The identifier type you supplied, echoed back."},"value":{"type":"string","description":"The identifier value you supplied, echoed back."},"found":{"type":"boolean"},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}}},"required":["identifier","value","found"]}}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/person-resolve":{"post":{"operationId":"quickPersonResolve","summary":"Quickly resolve person identifiers","tags":["Search"],"description":"Resolves many person identifiers — LinkedIn slug, numeric LinkedIn user ID, LinkedIn profile URL, or LinkedIn entity URN — to full profile records in a single request.\n\n<span>⚡ <strong>Rate limit:</strong> 1500 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per person resolved&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"people":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn profile URL (e.g. 'https://www.linkedin.com/in/williamhgates')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn profile slug (e.g. 'williamhgates')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUserId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric user ID (e.g. '251749025'). This is NOT derived from the profile URL."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["entityUrn"]},"value":{"type":"string","minLength":1,"description":"LinkedIn entity URN (e.g. 'ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc'). The opaque id LinkedIn uses internally."}},"required":["identifier","value"]}]},"minItems":1,"maxItems":100,"description":"People to resolve. Each entry is an { identifier, value } pair where identifier is \"linkedinSlug\", \"linkedinUserId\", \"linkedinUrl\", or \"entityUrn\". Max 100 per request. You are charged only for the ones that resolve."}},"required":["apiKey","people"]}}}},"x-rate-limit":{"max":1500,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per person resolved","variableCosts":[{"credits":1,"perUnit":"person resolved","operation":"getPersonFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl","linkedinSlug","linkedinUserId","entityUrn"],"description":"The identifier type you supplied, echoed back."},"value":{"type":"string","description":"The identifier value you supplied, echoed back."},"found":{"type":"boolean"},"person":{"type":["object","null"],"properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]}},"required":["identifier","value","found"]}}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-rankings":{"post":{"operationId":"listCompanyRankings","summary":"Download a ranked company list","tags":["Company info"],"description":"Download a ranked company list edition (for example the most recent Fortune 500), including rank, domain, financials, and headcount for every company. Optionally restrict the download to an inclusive rank range.\n\n<span>⚡ <strong>Rate limit:</strong> 600 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per company returned&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"rankings":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":["integer","null"],"minimum":2024,"maximum":2026,"description":"Edition year of the list. Omit to get the most recent year available."},"rankRange":{"type":"object","properties":{"low":{"type":"integer","minimum":1,"description":"First rank to include, where 1 is the top-ranked company."},"high":{"type":"integer","minimum":1,"description":"Last rank to include."}},"required":["low","high"],"description":"Inclusive rank range of companies to download. Note: the Fortune 500 edition actually holds the top 1000 companies, so you can request ranks past 500 (e.g. up to 1000)."}},"required":["list","rankRange"]}},"required":["apiKey","rankings"]}}}},"x-rate-limit":{"max":600,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per company returned","variableCosts":[{"credits":1,"perUnit":"company returned","operation":"getCompanyFromRankingList"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":"integer","description":"Edition year of the returned list."},"companies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Company name as published on the list."},"rank":{"type":"integer","minimum":1,"description":"Position on the list for this edition (1 = top ranked)."},"domain":{"type":["string","null"],"description":"Primary company domain, e.g. 'example.com'."},"ticker":{"type":["string","null"],"description":"Stock ticker symbol (e.g. 'AAPL'), when the company is publicly traded."},"headquarters":{"type":["string","null"],"description":"Where the company is based. The exact format varies by list."},"countryCode":{"type":["string","null"],"description":"ISO 3166-1 alpha-3 country code of the headquarters country (e.g. 'USA')."},"revenueUsd":{"type":["number","null"],"description":"Annual revenue in US dollars."},"profitsUsd":{"type":["number","null"],"description":"Annual profits in US dollars."},"marketCapUsd":{"type":["number","null"],"description":"Market capitalization in US dollars."},"employeeCount":{"type":["number","null"],"description":"Number of employees."}},"required":["name","rank"]},"description":"Companies in rank order (rank 1 first)."}},"required":["list","year","companies"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/stealth-founders/search":{"post":{"operationId":"stealthFoundersSearch","summary":"Search stealth/ex-stealth founders","tags":["Stealth"],"description":"Find stealth founders — people currently at stealth-mode companies, or who recently left stealth (launched). Supports profile search filters to narrow results by location, keywords, job history, education, and more.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per profile found&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"stealthConfig":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","description":"Find people currently in stealth. Optional enteredStealthAt narrows by entry date.","enum":["in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Date selection for when people entered stealth. Supports absolute or relative windows."}},"required":["mode"],"additionalProperties":false},{"type":"object","properties":{"mode":{"type":"string","description":"Find people who recently exited stealth. leftStealthAt defaults to the last year when omitted.","enum":["left-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Optional date selection for when people entered stealth."},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"default":{"strategy":"relative","window":{"method":"within","period":"year","lowerBound":0,"upperBound":1}},"description":"Date selection for when people exited stealth. Defaults to the last year when omitted."}},"required":["mode"],"additionalProperties":false}],"description":"Stealth mode configuration. Use in-stealth for current stealth founders, or left-stealth for exited stealth founders."},"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"Profile search filters to narrow results within the stealth population. All fields are optional — omit to search all stealth founders.","default":{}},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"Number of profiles to return per page."},"cursor":{"type":["string","null"],"description":"Opaque cursor from the previous response. Omit for the first page."}},"required":["apiKey","stealthConfig"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per profile found","variableCosts":[{"credits":1,"perUnit":"profile found","operation":"getPersonFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"profile":{"type":"object","properties":{"user_id":{"type":["string","null"]},"primary_slug":{"type":"string"},"first_name":{"type":["string","null"]},"last_name":{"type":["string","null"]},"name":{"type":["string","null"]},"headline":{"type":["string","null"]},"profile_pic":{"type":["string","null"]},"locality":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"entity_urn":{"type":["string","null"]},"detailed_education":{"type":["array","null"],"items":{}},"detailed_work_experiences":{"type":["array","null"],"items":{}}},"required":["primary_slug"]},"stealthCareer":{"type":"object","properties":{"enteredStealthAt":{"type":["string","null"],"description":"When we first observed this person in stealth."},"lastConfirmedInStealthAt":{"type":["string","null"],"description":"Most recent date where we confirmed that they were still in stealth."},"leftStealthAt":{"type":["string","null"],"description":"When we first observed this person no longer in stealth. Null if still in stealth."},"daysInStealth":{"type":["integer","null"],"description":"Days spent in stealth. If still in stealth, days from entry to today. If left, days from entry to exit."},"transitions":{"type":"array","items":{"type":"object","properties":{"beforeSnapshotDate":{"type":"string","description":"Older snapshot timestamp in this transition."},"afterSnapshotDate":{"type":"string","description":"Newer snapshot timestamp in this transition."},"addedCurrentExperiences":{"type":"array","items":{"type":"object","properties":{"title":{"type":["string","null"]},"companyName":{"type":["string","null"]},"startDate":{"type":["string","null"]},"endDate":{"type":["string","null"]},"isCurrent":{"type":["boolean","null"]}}},"description":"Current experiences that appeared in the newer snapshot and were absent in the older snapshot."},"removedCurrentExperiences":{"type":"array","items":{"type":"object","properties":{"title":{"type":["string","null"]},"companyName":{"type":["string","null"]},"startDate":{"type":["string","null"]},"endDate":{"type":["string","null"]},"isCurrent":{"type":["boolean","null"]}}},"description":"Current experiences that existed in the older snapshot and disappeared in the newer snapshot."},"stealthStateChanged":{"type":"boolean","description":"Whether the person switched stealth state between the two snapshots."}},"required":["beforeSnapshotDate","afterSnapshotDate","addedCurrentExperiences","removedCurrentExperiences","stealthStateChanged"]},"description":"Signals job-listing changes across adjacent snapshots (older -> newer). These changes can provide useful clues while someone is in stealth, such as a role shifting from 'Founder @ Stealth Startup' to a more specific label like 'CTO @ Stealth Fintech Startup'."}},"required":["transitions"]}},"required":["profile","stealthCareer"]}},"pagination":{"type":"object","properties":{"nextCursor":{"type":["string","null"],"description":"Cursor for the next page. Null means there are no additional pages."},"hasMore":{"type":"boolean","description":"Whether additional pages are available for this query."}},"required":["hasMore"]}},"required":["data","pagination"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/stealth-founders/count":{"post":{"operationId":"stealthFoundersCount","summary":"Count stealth/ex-stealth founders","tags":["Stealth"],"description":"Count profiles matching stealth founder filters. Uses the same filters as the stealth founders search endpoint but returns only the total count.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"stealthConfig":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","description":"Find people currently in stealth. Optional enteredStealthAt narrows by entry date.","enum":["in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Date selection for when people entered stealth. Supports absolute or relative windows."}},"required":["mode"],"additionalProperties":false},{"type":"object","properties":{"mode":{"type":"string","description":"Find people who recently exited stealth. leftStealthAt defaults to the last year when omitted.","enum":["left-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Optional date selection for when people entered stealth."},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"default":{"strategy":"relative","window":{"method":"within","period":"year","lowerBound":0,"upperBound":1}},"description":"Date selection for when people exited stealth. Defaults to the last year when omitted."}},"required":["mode"],"additionalProperties":false}],"description":"Stealth mode configuration. Use in-stealth for current stealth founders, or left-stealth for exited stealth founders."},"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"Profile search filters to narrow results within the stealth population. All fields are optional — omit to search all stealth founders.","default":{}}},"required":["apiKey","stealthConfig"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getPersonCountFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"count":{"type":"integer","minimum":0,"description":"Total number of profiles matching this stealth query."}},"required":["count"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/turbo/sync":{"post":{"operationId":"syncTurboContactEnrichment","summary":"Reveal contact details (turbo)","tags":["Contact details"],"description":"Fastest synchronous contact reveal — optimized for speed at a higher credit cost. Uses a premium enrichment stack for the lowest possible latency. For a cheaper option with slightly longer response times, use the standard /contact-details/single endpoint. For maximum coverage (async, slower), use the /contact-details/exhaustive/start endpoint.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay only for the data you request:<br />• 7 credits for all phone numbers AND all emails<br />• 3 credits for work email only<br />• 3 credits for personal email only<br />• 5 credits for phone only<br />• 5 credits for all emails&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Partial reveals only bill for delivered data.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 90 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 90 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"linkedinUrl":{"type":"string","minLength":1,"description":"The person's LinkedIn identifier. Accepts a full LinkedIn profile URL (e.g. 'https://www.linkedin.com/in/williamhgates/'), a bare slug (e.g. 'williamhgates'), a Sales Navigator URN (e.g. 'ACwAAA-001MBbIvJon'), or a numeric LinkedIn user ID (e.g. '443105112')."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"The enrichment types to request. Credits are charged per selected type.","default":{"getWorkEmails":true,"getPersonalEmails":true,"getPhoneNumbers":true}},"patience":{"type":["string","null"],"enum":["MINIMUM","LOW","MEDIUM","HIGH","EXTREME","MAXIMUM",null],"description":"How long to wait for email deliverability validation after a contact is found. Higher patience increases average response time but improves deliverability accuracy. MINIMUM is the least thorough bounce-detection option."}},"required":["apiKey","linkedinUrl"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Pay only for the data you request:\n• 7 credits for all phone numbers AND all emails\n• 3 credits for work email only\n• 3 credits for personal email only\n• 5 credits for phone only\n• 5 credits for all emails","variableCosts":[{"credits":7,"perUnit":"full reveal (phone + emails)","operation":"premiumCombinedReveal"},{"credits":3,"perUnit":"work email reveal","operation":"premiumWorkEmailReveal"},{"credits":3,"perUnit":"personal email reveal","operation":"premiumPersonalEmailReveal"},{"credits":5,"perUnit":"phone reveal","operation":"premiumPhoneReveal"},{"credits":5,"perUnit":"all emails reveal","operation":"premiumAllEmailReveal"}],"comment":"Partial reveals only bill for delivered data.","chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":90,"displayText":"90 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profile":{"type":"object","properties":{"name":{"type":["string","null"],"description":"The person's full name"},"status":{"type":"string","enum":["completed"]},"emails":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string"},"status":{"type":["string","null"],"enum":["valid","risky","unknown","invalid",null]}},"required":["email","type"]}},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string"}},"required":["number","type"]}},"success":{"type":"boolean"},"task_id":{"type":"string"},"linkedin_url":{"type":"string"}},"required":["status","emails","phoneNumbers","success","task_id","linkedin_url"]},"done":{"type":"boolean","description":"Whether the enrichment is completed or not."}},"required":["profile","done"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/premium-phone/sync":{"post":{"operationId":"premiumPhoneReveal","summary":"Premium phone number lookup","tags":["Contact details"],"description":"Find and verify phone numbers for a LinkedIn profile using multiple data sources.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 5 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"linkedinUrl":{"type":"string","minLength":1,"description":"LinkedIn profile identifier. Accepts a full URL, a bare slug, or a LinkedIn entity URN."},"patience":{"type":["string","null"],"enum":["MINIMUM","LOW","MEDIUM","HIGH","EXTREME","MAXIMUM",null],"description":"How long to wait for phone-number verification after a number is found. Higher patience increases average response time but improves identity and reachability accuracy. MINIMUM is the least thorough verification option."}},"required":["apiKey","linkedinUrl"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"5 credits per request","variableCosts":[{"credits":5,"perUnit":"request","operation":"premiumPhoneReveal"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"linkedinUrl":{"type":"string","description":"Resolved LinkedIn profile URL."},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string","description":"Phone number in E.164 format."},"type":{"type":"string","enum":["mobile","other","unknown"],"description":"Phone line type."},"callerIdValidation":{"type":["object","null"],"properties":{"category":{"type":"string","enum":["EXACT_MATCH","PROBABLE_MATCH","FAMILY_MEMBER","BUSINESS_LINE","INCONCLUSIVE"],"description":"How confidently this phone number is associated with the person."},"reasoning":{"type":"string","description":"Brief explanation for the confidence level."},"callerIdName":{"type":"string","description":"The registered name for this phone number."}},"required":["category","reasoning","callerIdName"],"description":"Result for attempted phone number verification."}},"required":["number","type"]},"description":"Phone numbers found for this person, annotated with identity verification when available."}},"required":["linkedinUrl","phoneNumbers"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/single":{"post":{"operationId":"syncQuickContactReveal","summary":"Reveal contact details (standard)","tags":["Contact details"],"description":"Standard synchronous contact reveal — the best balance of speed, cost, and coverage. Accepts a LinkedIn profile URL, slug, Sales Navigator URN, or numeric LinkedIn user ID; profile details are resolved automatically. For faster results at a higher credit cost, use the /contact-details/turbo/sync endpoint. For maximum coverage (async, slower, higher cost), use the /contact-details/exhaustive/start endpoint.\n\n<span>⚡ <strong>Rate limit:</strong> 200 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay only for the data you request:<br />• 5 credits for all phone numbers AND all emails<br />• 2 credits for work email only<br />• 2 credits for personal email only<br />• 3 credits for phone only<br />• 3 credits for all emails&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Partial reveals only bill for delivered data.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 2 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 2 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"linkedinUrl":{"type":"string","minLength":1,"description":"The person's LinkedIn identifier. Accepts a full LinkedIn profile URL (e.g. 'https://www.linkedin.com/in/williamhgates/'), a bare slug (e.g. 'williamhgates'), a Sales Navigator URN (e.g. 'ACwAAA-001MBbIvJon'), or a numeric LinkedIn user ID (e.g. '443105112')."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"The enrichment types to request. Credits are charged per selected type.","default":{"getWorkEmails":true,"getPersonalEmails":true,"getPhoneNumbers":true}},"patience":{"type":["string","null"],"enum":["MINIMUM","LOW","MEDIUM","HIGH","EXTREME","MAXIMUM",null],"description":"How long to wait for email deliverability validation after a contact is found. Higher patience increases average response time but improves deliverability accuracy. MINIMUM is the least thorough bounce-detection option."},"validateEmails":{"type":["boolean","null"],"description":"Deprecated — use `patience` instead. When false, maps to patience: MINIMUM. Ignored if `patience` is also provided.","deprecated":true,"x-internal":true}},"required":["apiKey","linkedinUrl"]}}}},"x-rate-limit":{"max":200,"window":"1 minute"},"x-credit-cost":{"description":"Pay only for the data you request:\n• 5 credits for all phone numbers AND all emails\n• 2 credits for work email only\n• 2 credits for personal email only\n• 3 credits for phone only\n• 3 credits for all emails","variableCosts":[{"credits":5,"perUnit":"full reveal (phone + emails)","operation":"combinedReveal"},{"credits":2,"perUnit":"work email reveal","operation":"workEmailReveal"},{"credits":2,"perUnit":"personal email reveal","operation":"personalEmailReveal"},{"credits":3,"perUnit":"phone reveal","operation":"phoneReveal"},{"credits":3,"perUnit":"all emails reveal","operation":"allEmailReveal"}],"comment":"Partial reveals only bill for delivered data.","chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":120,"displayText":"2 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profile":{"type":"object","properties":{"name":{"type":["string","null"],"description":"The person's full name. Null when no resolved name is available."},"status":{"type":"string","enum":["completed"]},"emails":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string"},"status":{"type":["string","null"],"enum":["valid","risky","unknown","invalid",null],"description":"Email verification result. Only emails with `valid` have passed deliverability verification; `unknown` emails were returned without an affirmative verification and should be treated cautiously for outbound sending."}},"required":["email","type"]}},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string"}},"required":["number","type"]}},"success":{"type":"boolean"},"task_id":{"type":"string"},"linkedin_url":{"type":"string"}},"required":["status","emails","phoneNumbers","success","task_id","linkedin_url"]},"done":{"type":"boolean","description":"Whether the enrichment is completed or not."}},"required":["profile","done"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/lite":{"post":{"operationId":"liteContactReveal","summary":"Reveal contact details (lite)","tags":["Contact details"],"description":"Low-cost contact reveal path that searches for emails and phone numbers. Compared with other contact reveal endpoints, this endpoint is priced lower but has lower yield (it may miss contacts that other endpoints can find).\n\n<span>⚡ <strong>Rate limit:</strong> 500 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per lite email reveal + 2 credits per lite phone reveal&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 2 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 2 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"input":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["linkedin"]},"linkedinIdentifier":{"type":"string","minLength":1,"description":"LinkedIn profile identifier — a full URL, bare slug, or URN (e.g. 'williamhgates', 'https://www.linkedin.com/in/williamhgates')."},"fullName":{"type":["string","null"],"minLength":1,"description":"Full name of the person. Optional — improves match accuracy."}},"required":["mode","linkedinIdentifier"]},{"type":"object","properties":{"mode":{"type":"string","enum":["name-domain"]},"fullName":{"type":"string","minLength":1,"description":"Full name of the person."},"companyDomain":{"type":"string","minLength":1,"description":"Company domain (e.g. 'gatesfoundation.org')."}},"required":["mode","fullName","companyDomain"]}],"description":"Person lookup parameters. Use mode 'linkedin' or 'name-domain'."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":false},"getPhoneNumbers":{"type":"boolean","default":false}},"description":"Which email and phone types to look for.","default":{"getWorkEmails":true,"getPersonalEmails":false,"getPhoneNumbers":false}},"patience":{"type":["string","null"],"enum":["MINIMUM","LOW","MEDIUM","HIGH","EXTREME","MAXIMUM",null],"description":"How long to wait for email deliverability validation after a contact is found. Higher patience increases average response time but improves deliverability accuracy. MINIMUM is the least thorough bounce-detection option."}},"required":["apiKey","input"]}}}},"x-rate-limit":{"max":500,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per lite email reveal + 2 credits per lite phone reveal","variableCosts":[{"credits":1,"perUnit":"lite email reveal","operation":"liteEmailReveal"},{"credits":2,"perUnit":"lite phone reveal","operation":"litePhoneReveal"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":120,"displayText":"2 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profile":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"object","properties":{"emailAddress":{"type":["string","null"],"minLength":1,"description":"Email address for the person."},"type":{"type":["string","null"],"enum":["work","personal",null],"description":"Classification of the email address."},"validationStatus":{"type":["string","null"],"enum":["valid","risky","unknown","invalid",null],"description":"Email verification result."},"deliverabilityScore":{"type":["number","null"],"minimum":0,"maximum":100,"description":"Confidence score ranking deliverability for this email. Higher values indicate higher likelihood of delivery."},"isCatchAll":{"type":["boolean","null"],"description":"Whether the domain accepts email to any address (catch-all). Catch-all domains make individual address verification unreliable — the address may appear valid but not actually be monitored."}}},"default":[],"description":"All emails found for this profile, ordered by priority."},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"phoneNumber":{"type":["string","null"],"minLength":1,"description":"Phone number for the person."},"type":{"type":["string","null"],"enum":["mobile","other","unknown",null],"description":"Classification of the phone number."}}},"default":[],"description":"All phone numbers found for this profile."}},"required":["emails","phoneNumbers"]}},"required":["profile"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/instant":{"post":{"operationId":"instantContactReveal","summary":"Reveal contact details (instant)","tags":["Contact details"],"description":"Fast contact lookup that returns emails and phone numbers already on file for the person. Does not perform additional discovery or re-verify addresses at request time, so yield is lower than other contact-reveal endpoints and validationStatus may be unknown. Accepts a LinkedIn profile identifier or a name plus company domain.\n\n<span>⚡ <strong>Rate limit:</strong> 500 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per instant email reveal + 1 credit per instant phone reveal&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 15 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 15 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"input":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["linkedin"]},"linkedinIdentifier":{"type":"string","minLength":1,"description":"LinkedIn profile identifier — a full URL, bare slug, or URN (e.g. 'williamhgates', 'https://www.linkedin.com/in/williamhgates')."},"fullName":{"type":["string","null"],"minLength":1,"description":"Full name of the person. Optional — improves match accuracy."}},"required":["mode","linkedinIdentifier"]},{"type":"object","properties":{"mode":{"type":"string","enum":["name-domain"]},"fullName":{"type":"string","minLength":1,"description":"Full name of the person."},"companyDomain":{"type":"string","minLength":1,"description":"Company domain (e.g. 'gatesfoundation.org')."}},"required":["mode","fullName","companyDomain"]}],"description":"Person lookup parameters. Use mode 'linkedin' or 'name-domain'."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":false},"getPhoneNumbers":{"type":"boolean","default":false}},"description":"Which email and phone types to look for.","default":{"getWorkEmails":true,"getPersonalEmails":false,"getPhoneNumbers":false}}},"required":["apiKey","input"]}}}},"x-rate-limit":{"max":500,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per instant email reveal + 1 credit per instant phone reveal","variableCosts":[{"credits":1,"perUnit":"instant email reveal","operation":"instantEmailReveal"},{"credits":1,"perUnit":"instant phone reveal","operation":"instantPhoneReveal"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":15,"displayText":"15 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profile":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"object","properties":{"emailAddress":{"type":["string","null"],"minLength":1,"description":"Email address for the person."},"type":{"type":["string","null"],"enum":["work","personal",null],"description":"Classification of the email address."},"validationStatus":{"type":["string","null"],"enum":["valid","risky","unknown","invalid",null],"description":"Email verification result."},"deliverabilityScore":{"type":["number","null"],"minimum":0,"maximum":100,"description":"Confidence score ranking deliverability for this email. Higher values indicate higher likelihood of delivery."},"isCatchAll":{"type":["boolean","null"],"description":"Whether the domain accepts email to any address (catch-all). Catch-all domains make individual address verification unreliable — the address may appear valid but not actually be monitored."}}},"default":[],"description":"All emails found for this profile, ordered by priority."},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"phoneNumber":{"type":["string","null"],"minLength":1,"description":"Phone number for the person."},"type":{"type":["string","null"],"enum":["mobile","other","unknown",null],"description":"Classification of the phone number."}}},"default":[],"description":"All phone numbers found for this profile."}},"required":["emails","phoneNumbers"]}},"required":["profile"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/depth-chart/start":{"post":{"operationId":"startDepthChart","summary":"Start depth chart generation","tags":["Company info"],"description":"Generates a breakdown of the number of employees at a given company by department/function (Engineering, Sales, Marketing, etc.), seniority (Junior through Executive), or both. This helps answer questions like, 'how many senior engineers does this company have?'. Asynchronous; use the polling endpoint to get your results. Processes up to 10,000 employees per report. This is a more thorough alternative to guessing a company's internal org chart.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 8 credits per depth chart report&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]}],"description":"Company identifier. Set identifier to 'linkedinUrl', 'linkedinSlug', 'linkedinOrgId', or 'domain' and provide the corresponding value."},"functions":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"maxItems":30,"description":"Optional list of function/department labels to classify employees into (e.g. ['Engineering', 'Sales', 'Legal Practice']). When omitted, functions are auto-detected based on the company's employee titles. An 'Other' category is automatically appended if not already included, to catch employees that don't fit the provided labels."}},"required":["apiKey","company"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"8 credits per depth chart report","variableCosts":[{"credits":8,"perUnit":"depth chart report","operation":"generateDepthChart"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"reportId":{"type":"string","description":"Unique report ID. Poll /depth-chart/poll with this ID to check status and retrieve results."}},"required":["reportId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/department-size":{"post":{"operationId":"getDepartmentSize","summary":"Count employees per department","tags":["Company info"],"description":"Counts how many current employees at a company fall into each department you define. Unlike the depth-chart endpoint, this Synchronous endpoint provides immediate results without waiting for background job generation. You supply the job titles that define each department (no seniority is considered), and every current employee is counted — not just a sample. This endpoint performs a headcount snapshot for direct, actionable data.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per company&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]}],"description":"Company identifier. Set identifier to 'linkedinUrl', 'linkedinSlug', 'linkedinOrgId', or 'domain' and provide the corresponding value."},"departments":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","minLength":1,"description":"Your label for this department (e.g. 'Engineering')."},"titles":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","description":"Match employees against a job-title list you provide.","enum":["manual"]},"include":{"type":"object","properties":{"titles":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"maxItems":400,"description":"Job-title strings that qualify an employee for this department."}},"required":["titles"],"description":"Title filter for including employees in this department."},"exclude":{"type":"object","properties":{"titles":{"type":"array","items":{"type":"string","minLength":1},"maxItems":400,"default":[],"description":"Job-title strings that disqualify an employee even if they matched include.titles. Omit this object or pass an empty list to exclude nobody."}},"default":{"titles":[]},"description":"Optional title filter for excluding employees from this department."}},"required":["type","include"]}],"description":"How to decide which employees belong to this department."}},"required":["name","titles"]},"minItems":1,"maxItems":20,"description":"Departments to size. Each is counted independently against ALL current employees, so overlapping definitions may count the same person in more than one department."}},"required":["apiKey","company","departments"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per company","variableCosts":[{"credits":2,"perUnit":"company","operation":"getDepartmentSize"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"company":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Company name"},"linkedinUrl":{"type":["string","null"],"description":"Full LinkedIn company profile URL"},"linkedinOrgId":{"type":["string","null"],"description":"LinkedIn organization ID for the company"},"domain":{"type":["string","null"],"description":"Company primary domain"}},"description":"Company identification details"},"headcount":{"type":"number","minimum":0,"description":"Public sources reported total employees at the company (the percentage denominator). Per-department counts come from profile matching and may not sum to this value."},"departments":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The department label you supplied"},"count":{"type":"number","minimum":0,"description":"Number of current employees matching this department"},"percentOfHeadcount":{"type":"number","minimum":0,"description":"Department count as a percentage of total company headcount (0–100, rounded to 2 decimal places). Because departments are counted independently, values across departments need not sum to 100. Due to approximation above 40K employees, this can slightly exceed 100."}},"required":["name","count","percentOfHeadcount"]},"description":"One entry per input department, in the same order"}},"required":["company","headcount","departments"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/talent-flow":{"post":{"operationId":"getTalentFlow","summary":"Get talent flow analysis for a company","tags":["Company info"],"description":"Visualizes talent movement at a company. Use 'joiners' to see where a company is hiring from — which competitors, universities, and regions it pulls talent from during the time window. Use 'leavers' to see where a company's alumni are going — which companies or startups are attracting its former employees. Processes up to 10,000 profiles per request. Large companies may take up to two minutes to analyze.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 5 credits per talent flow report&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 2 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 2 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]}],"description":"Company to analyze. Set identifier to 'linkedinUrl', 'linkedinSlug', 'linkedinOrgId', or 'domain' and provide the corresponding value."},"direction":{"type":"string","enum":["joiners","leavers"],"description":"Direction of talent flow. 'joiners' finds people who started at the company within the window and reports where they came from. 'leavers' finds people who left the company within the window and reports where they went."},"dateRange":{"type":"object","properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["apiKey","company","direction","dateRange"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"5 credits per talent flow report","variableCosts":[{"credits":5,"perUnit":"talent flow report","operation":"talentFlow"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":120,"displayText":"2 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"direction":{"type":"string","enum":["joiners","leavers"],"description":"Direction of the analysis."},"company":{"type":"object","properties":{"name":{"type":"string","description":"Company name."},"linkedinOrgId":{"type":"string","description":"LinkedIn organization ID (e.g. '1441' for Google)."},"domains":{"type":"array","items":{"type":"string"},"description":"Company website domains."},"linkedinSlug":{"type":["string","null"],"description":"LinkedIn company slug (e.g. 'anthropic')."}},"required":["name","linkedinOrgId","domains"],"description":"Company that was analyzed."},"window":{"type":"object","properties":{"after":{"type":["string","null"],"description":"Start of the analysis window (YYYY-MM-DD). Null means no lower bound."},"before":{"type":["string","null"],"description":"End of the analysis window (YYYY-MM-DD). Null means no upper bound."}},"description":"Time window for the analysis."},"peopleCount":{"type":"integer","minimum":0,"description":"Number of people who joined (joiners) or left (leavers) the company within the analysis window."},"companyBuckets":{"type":"array","items":{"type":"object","properties":{"companyName":{"type":"string","description":"Company name."},"domain":{"type":["string","null"],"description":"Company website domain (e.g. 'amazon.com')."},"linkedinUrl":{"type":["string","null"],"description":"LinkedIn company URL."},"linkedinOrgId":{"type":["string","null"],"description":"LinkedIn organization ID."},"count":{"type":"integer","minimum":0,"description":"Number of people who came from this company (joiners) or went to this company (leavers)."},"percent":{"type":"number","minimum":0,"maximum":100,"description":"Percentage of total people (0-100, one decimal place)."},"stage":{"type":["string","null"],"description":"Funding stage (e.g. 'Series A', 'Acquired', 'IPO')."},"totalFundingUsd":{"type":["number","null"],"description":"Total funding raised in USD, if available."},"valuationUsd":{"type":["number","null"],"description":"Latest known valuation in USD, if available."}},"required":["companyName","count","percent"]},"description":"Where people came from (joiners) or went to (leavers), sorted by count descending."},"yearsOfExperience":{"type":"object","properties":{"count":{"type":"integer","minimum":0,"description":"Number of data points."},"median":{"type":["number","null"],"description":"Median value."},"mean":{"type":["number","null"],"description":"Mean (average) value."},"stdDev":{"type":["number","null"],"description":"Standard deviation."},"p25":{"type":["number","null"],"description":"25th percentile."},"p75":{"type":["number","null"],"description":"75th percentile."},"min":{"type":["number","null"],"description":"Minimum value."},"max":{"type":["number","null"],"description":"Maximum value."}},"required":["count"],"description":"Years of experience at the time of the join or leave event."},"tenureMonths":{"type":"object","properties":{"count":{"type":"integer","minimum":0,"description":"Number of data points."},"median":{"type":["number","null"],"description":"Median value."},"mean":{"type":["number","null"],"description":"Mean (average) value."},"stdDev":{"type":["number","null"],"description":"Standard deviation."},"p25":{"type":["number","null"],"description":"25th percentile."},"p75":{"type":["number","null"],"description":"75th percentile."},"min":{"type":["number","null"],"description":"Minimum value."},"max":{"type":["number","null"],"description":"Maximum value."}},"required":["count"],"description":"Tenure at the analyzed company, in months."},"breakdowns":{"type":"object","properties":{"bySeniority":{"type":"array","items":{"type":"object","properties":{"seniority":{"type":"string","description":"Seniority level label."},"count":{"type":"integer","minimum":0,"description":"Number of people at this seniority."},"percent":{"type":"number","minimum":0,"maximum":100,"description":"Percentage of total people (0-100)."}},"required":["seniority","count","percent"]},"description":"Breakdown by seniority level."},"byJobFunction":{"type":"array","items":{"type":"object","properties":{"jobFunction":{"type":"string","description":"Job function label."},"count":{"type":"integer","minimum":0,"description":"Number of people in this function."},"percent":{"type":"number","minimum":0,"maximum":100,"description":"Percentage of total people (0-100)."}},"required":["jobFunction","count","percent"]},"description":"Breakdown by job function."},"byCountry":{"type":"array","items":{"type":"object","properties":{"countryCode":{"type":"string","description":"ISO 3166-1 alpha-3 country code (e.g. 'USA', 'GBR', 'IND')."},"countryName":{"type":"string","description":"Full English country name."},"count":{"type":"integer","minimum":0,"description":"Number of people in this country."},"percent":{"type":"number","minimum":0,"maximum":100,"description":"Percentage of total people (0-100)."}},"required":["countryCode","countryName","count","percent"]},"description":"Breakdown by country."},"byMetro":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string","description":"Region identifier. Preset metros use slugs like 'sf-bay-area'; non-preset metros are clustered and use 'unknown-metro' with centroid coordinates; profiles with no location use 'no-location'."},"name":{"type":"string","description":"Metro area display name."},"count":{"type":"integer","minimum":0,"description":"Number of people in this metro area."},"percent":{"type":"number","minimum":0,"maximum":100,"description":"Percentage of total people (0-100)."},"centroid":{"type":["object","null"],"properties":{"lat":{"type":"number","description":"Centroid latitude."},"lon":{"type":"number","description":"Centroid longitude."}},"required":["lat","lon"],"description":"Centroid coordinates for clustered metros. Null for preset regions and no-location."}},"required":["slug","name","count","percent"]},"description":"Breakdown by metro area."},"bySchool":{"type":"array","items":{"type":"object","properties":{"school":{"type":"string","description":"School or university name."},"count":{"type":"integer","minimum":0,"description":"Number of people from this school."},"percent":{"type":"number","minimum":0,"maximum":100,"description":"Percentage of total people (0-100)."}},"required":["school","count","percent"]},"description":"Breakdown by school or university."},"byYearsOfExperience":{"type":"array","items":{"type":"object","properties":{"label":{"type":"string","description":"Years of experience range label."},"count":{"type":"integer","minimum":0,"description":"Number of people in this range."},"percent":{"type":"number","minimum":0,"maximum":100,"description":"Percentage of total people (0-100)."}},"required":["label","count","percent"]},"description":"Years of experience distribution histogram."}},"required":["bySeniority","byJobFunction","byCountry","byMetro","bySchool","byYearsOfExperience"],"description":"Categorical breakdowns of the analyzed population."},"generatedAt":{"type":"string","description":"ISO 8601 timestamp when the report was generated."},"markdownSummary":{"type":"string","description":"Human-readable markdown summary of the report, including tables and charts."}},"required":["direction","company","window","peopleCount","companyBuckets","yearsOfExperience","tenureMonths","breakdowns","generatedAt","markdownSummary"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/talent-flow/rivals":{"post":{"operationId":"getTalentFlowRivals","summary":"Get top talent sources/destinations for a company","tags":["Company info"],"description":"Given a company, find the companies where most of its talent is heading to or coming from, in both directions. For instance, company A might have gained N people from company X but lost M people to them in a given window. Reports the two-way head-to-head flow for the most important sources and destinations of the chosen firm. Processes up to 10,000 profiles per direction. Large companies may take up to four minutes to analyze.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 5 credits per talent flow report&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 4 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 4 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]}],"description":"Company to analyze. Set identifier to 'linkedinUrl', 'linkedinSlug', 'linkedinOrgId', or 'domain' and provide the corresponding value."},"dateRange":{"type":"object","properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}},"numCompaniesPerSide":{"type":"integer","minimum":1,"maximum":50,"default":10,"description":"Number of top donor and acceptor companies to include. Donors are companies the analyzed company gained the most people from; acceptors are companies it lost the most people to. Overlapping companies are combined, so the rival list may hold fewer than twice this number."}},"required":["apiKey","company","dateRange"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"5 credits per talent flow report","variableCosts":[{"credits":5,"perUnit":"talent flow report","operation":"talentFlow"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":240,"displayText":"4 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"company":{"type":"object","properties":{"name":{"type":"string","description":"Company name."},"linkedinOrgId":{"type":"string","description":"LinkedIn organization ID (e.g. '1441' for Google)."},"domains":{"type":"array","items":{"type":"string"},"description":"Company website domains."},"linkedinSlug":{"type":["string","null"],"description":"LinkedIn company slug (e.g. 'anthropic')."}},"required":["name","linkedinOrgId","domains"],"description":"Company that was analyzed."},"window":{"type":"object","properties":{"after":{"type":["string","null"],"description":"Start of the analysis window (YYYY-MM-DD). Null means no lower bound."},"before":{"type":["string","null"],"description":"End of the analysis window (YYYY-MM-DD). Null means no upper bound."}},"description":"Time window for the analysis."},"numCompaniesPerSide":{"type":"integer","minimum":1,"description":"Requested number of donor and acceptor companies per side."},"joinersCount":{"type":"integer","minimum":0,"description":"Number of people who joined the analyzed company within the window."},"leaversCount":{"type":"integer","minimum":0,"description":"Number of people who left the analyzed company within the window."},"rivals":{"type":"array","items":{"type":"object","properties":{"companyName":{"type":"string","description":"Rival company name."},"domain":{"type":["string","null"],"description":"Rival company website domain (e.g. 'stripe.com')."},"linkedinUrl":{"type":["string","null"],"description":"Rival company LinkedIn URL."},"linkedinOrgId":{"type":["string","null"],"description":"Rival company LinkedIn organization ID."},"gainedCount":{"type":"integer","minimum":0,"description":"People who left this company to join the analyzed company within the window."},"lostCount":{"type":"integer","minimum":0,"description":"People who left the analyzed company to join this company within the window."},"netCount":{"type":"integer","description":"gainedCount minus lostCount. Positive means the analyzed company gained more talent from this company than it lost to it."},"totalMovesCount":{"type":"integer","minimum":0,"description":"Total two-way moves with this company (gainedCount plus lostCount)."},"stage":{"type":["string","null"],"description":"Rival company funding stage (e.g. 'Series A', 'IPO')."},"totalFundingUsd":{"type":["number","null"],"description":"Rival company total funding raised in USD, if available."},"valuationUsd":{"type":["number","null"],"description":"Rival company latest known valuation in USD, if available."}},"required":["companyName","gainedCount","lostCount","netCount","totalMovesCount"]},"description":"Companies trading the most talent with the analyzed company, sorted by total two-way moves (gained plus lost) descending. Includes up to `numCompaniesPerSide` top donors (companies it hires from most) and up to `numCompaniesPerSide` top acceptors (companies its alumni join most); overlapping companies are combined into one entry."},"generatedAt":{"type":"string","description":"ISO 8601 timestamp when the report was generated."},"markdownSummary":{"type":"string","description":"Human-readable markdown summary of the report, including a rival table."}},"required":["company","window","numCompaniesPerSide","joinersCount","leaversCount","rivals","generatedAt","markdownSummary"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/mosaic/start":{"post":{"operationId":"startMosaic","summary":"Start Mosaic CSV healing","tags":["Repair Data"],"description":"Starts an asynchronous Mosaic job that heals and enriches an arbitrary CSV, TXT, XLSX, or public Google Sheet. Pass a public HTTPS URL (Google Drive / Sheets, Dropbox, OneDrive, or a direct file link). The file is securely fetched and stored before processing. Credits are charged inside the background job after the file is parsed (based on row count and selected options). The first Mosaic run for an organization may be a free trial (first 1,000 rows free; overage billed against normal credits). Use the polling endpoint with the returned run ID to retrieve status and download links.\n\n<span>⚡ <strong>Rate limit:</strong> 20 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Credits are charged after the file is parsed inside the background job. Cost is based on the number of billable rows plus any optional enrichments (contact details, company details) you enable. The first Mosaic run for an organization may be a free trial (first 1,000 rows free; overage billed against normal credits).&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Final charge depends on parsed row count and the options you select.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"sourceUrl":{"type":"string","format":"uri","description":"HTTPS URL of the input file. Supported formats: CSV, TXT (one LinkedIn profile URL per line), XLSX, or a public Google Sheet. You may also pass a public Google Drive file link, Dropbox share link, or OneDrive / SharePoint share link. The link must be publicly accessible (e.g. Google Sheets / Drive: \"Anyone with the link can view\"; Dropbox / OneDrive: link allows direct download) or the fetch will fail. Google Sheets export the first tab only. For XLSX workbooks we auto-detect the most likely worksheet and header row; if detection is unavailable we use the sheet with the most rows and treat row 1 as the header. Maximum file size is 50 MiB. The file is securely fetched and stored before processing."},"customInstructions":{"type":["string","null"],"description":"Optional additional instructions for the AI on top of our system prompt — not a replacement for it. Use this to steer enrichment when your file needs extra context. Examples: \"I really want personal emails but I don't care about phones\"; \"These are all doctors — make sure you get office phones, not home phones\"."},"options":{"type":["object","null"],"properties":{"contactInfo":{"type":["object","null"],"properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"Which kinds of contact info to reveal per row — work email, personal email, and/or phone — independently selectable. Omit to skip contact reveal entirely. When enabled, adds the matching contact-reveal operation(s) per billable row."},"includeCompanyDetails":{"type":"boolean","default":false,"description":"When true, enriches each person's current employer with funding, offices, headcount, and related company fields. Adds the company lookup operation per billable row."},"liveFetch":{"type":"boolean","default":true,"description":"When true, runs live profile fetch and web-search slug recovery when the enrichment plan calls for it. Bundled into the base Mosaic row charge — no separate operation. When false, the engine skips gated live-fetch steps only."},"runRedline":{"type":"boolean","default":false,"description":"When true, compares enriched output against your input columns to flag staleness or mismatches. No separate billing operation."},"maxRows":{"type":["integer","null"],"exclusiveMinimum":0,"maximum":20000,"description":"Cap how many input rows are processed and billed for this run (maximum 20,000). Useful for trial runs or cost control."}},"description":"Feature toggles that control billing and enrichment (contact info, company details, live fetch, redline, max rows)."}},"required":["apiKey","sourceUrl"]}}}},"x-rate-limit":{"max":20,"window":"1 minute"},"x-credit-cost":{"description":"Credits are charged after the file is parsed inside the background job. Cost is based on the number of billable rows plus any optional enrichments (contact details, company details) you enable. The first Mosaic run for an organization may be a free trial (first 1,000 rows free; overage billed against normal credits).","comment":"Final charge depends on parsed row count and the options you select.","chargingMethod":"charging-later"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"runId":{"type":"string","description":"Unique Mosaic run ID. Poll /mosaic/poll with this ID to check status and retrieve results."},"isFreeTrialRun":{"type":"boolean","description":"True when this run used the organization's one-time free Mosaic trial. The first 1,000 rows are free; rows beyond that are billed against normal credits."}},"required":["runId","isFreeTrialRun"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/exhaustive/start":{"post":{"operationId":"triggerExhaustiveContactEnrichment","summary":"Start exhaustive contact details reveal","tags":["Contact details"],"description":"Maximum-coverage contact reveal — runs all parallel enrichment branches to get the most comprehensive results. This is asynchronous: call this endpoint to start the task, then poll /contact-details/exhaustive/poll with the returned task ID. Results typically arrive within seconds to a few minutes; worst case can take up to about 4–8 minutes. Slower and more expensive than the synchronous endpoints, but returns more emails and phone numbers on average. For faster or lower-cost options, use /contact-details/turbo/sync (fastest), /contact-details/single (balanced), or /contact-details/lite (cheapest).\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay only for the data you request (exhaustive mode):<br />• 12 credits for all phone numbers AND all emails<br />• 5 credits for work email only<br />• 5 credits for personal email only<br />• 4 credits for phone only<br />• 9 credits for all emails&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Credits are charged upfront for the requested exhaustive bundle. Undelivered data is refunded per operation after the reveal completes, so partial reveals only bill for delivered data.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"linkedinUrl":{"type":"string","minLength":1,"description":"The person's LinkedIn identifier. Accepts a full LinkedIn profile URL (e.g. 'https://www.linkedin.com/in/williamhgates/'), a bare slug (e.g. 'williamhgates'), a Sales Navigator URN (e.g. 'ACwAAA-001MBbIvJon'), or a numeric LinkedIn user ID (e.g. '443105112')."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"Enrichment types to be requested. Include the ones you want to look for. For example, { getWorkEmails: true, getPersonalEmails: true, getPhoneNumbers: true }","default":{"getWorkEmails":true,"getPersonalEmails":true,"getPhoneNumbers":true}}},"required":["apiKey","linkedinUrl"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Pay only for the data you request (exhaustive mode):\n• 12 credits for all phone numbers AND all emails\n• 5 credits for work email only\n• 5 credits for personal email only\n• 4 credits for phone only\n• 9 credits for all emails","variableCosts":[{"credits":12,"perUnit":"full reveal (phone + emails) (exhaustive)","operation":"exhaustiveCombinedReveal"},{"credits":5,"perUnit":"work email reveal (exhaustive)","operation":"exhaustiveWorkEmailReveal"},{"credits":5,"perUnit":"personal email reveal (exhaustive)","operation":"exhaustivePersonalEmailReveal"},{"credits":4,"perUnit":"phone reveal (exhaustive)","operation":"exhaustivePhoneReveal"},{"credits":9,"perUnit":"all emails reveal (exhaustive)","operation":"exhaustiveAllEmailReveal"}],"comment":"Credits are charged upfront for the requested exhaustive bundle. Undelivered data is refunded per operation after the reveal completes, so partial reveals only bill for delivered data.","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"taskId":{"type":"string","description":"Exhaustive contact enrichment will proceed in the background. Call the polling endpoint with this ID to check if it's finished and get the result."}},"required":["taskId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/batch/start":{"post":{"operationId":"startBatchContactDetails","summary":"Start batch contact details","tags":["Contact details"],"description":"Starts fetching contact details for multiple people (up to 2000) in batch. This is an asynchronous task; use the polling endpoint to check progress and get results.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay only for the data you request:<br />• 5 credits for all phone numbers AND all emails<br />• 2 credits for work email only<br />• 2 credits for personal email only<br />• 3 credits for phone only&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Credits are charged upfront for all unique people queued (after deduping). Undelivered data is refunded per operation.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"personDetails":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":"object","properties":{"value":{"type":"string","pattern":"^(?:https?:\\/\\/)?(?:[a-z]+\\.)?linkedin\\.[a-z]{2,}\\/(?:in|sales\\/lead|talent\\/profile)\\/(?:[^/\\\\?,#]+)\\/?(?:[\\?,#].*)?","description":"A LinkedIn URL, like 'https://www.linkedin.com/in/jake'"}},"required":["value"]}},"required":["linkedinUrl"]},"minItems":1,"maxItems":2000},"enrichmentTypes":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"The types of contact information to request for each person. Credits are charged per selected type.","default":{"getWorkEmails":true,"getPersonalEmails":true,"getPhoneNumbers":true}}},"required":["apiKey","personDetails"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"Pay only for the data you request:\n• 5 credits for all phone numbers AND all emails\n• 2 credits for work email only\n• 2 credits for personal email only\n• 3 credits for phone only","variableCosts":[{"credits":5,"perUnit":"full reveal (phone + emails)","operation":"combinedReveal"},{"credits":2,"perUnit":"work email reveal","operation":"workEmailReveal"},{"credits":2,"perUnit":"personal email reveal","operation":"personalEmailReveal"},{"credits":3,"perUnit":"phone reveal","operation":"phoneReveal"}],"comment":"Credits are charged upfront for all unique people queued (after deduping). Undelivered data is refunded per operation.","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"taskId":{"type":"string","minLength":1,"description":"The task ID. Use this to poll for results."},"numPeopleEnqueued":{"type":"integer","exclusiveMinimum":0,"description":"The total number of people queued for enrichment."},"numDuplicatesSkipped":{"type":["integer","null"],"description":"The number of duplicate people found in the input list. Duplicates are skipped and not charged."}},"required":["taskId","numPeopleEnqueued"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/batch/cancel":{"post":{"operationId":"cancelBatchContactDetails","summary":"Cancel batch contact details","tags":["Contact details"],"description":"Cancels a batch contact details job that is in progress. Only unclaimed profiles will be cancelled. Profiles already processed will be charged for. Credits are refunded for cancelled profiles.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"taskId":{"type":"string","minLength":1,"description":"The task ID returned from the start endpoint."}},"required":["apiKey","taskId"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"cancelledCount":{"type":"integer","minimum":0,"description":"The number of profiles cancelled."},"creditsRefunded":{"type":"number","minimum":0,"description":"The number of credits refunded for cancelled profiles."},"message":{"type":"string","description":"A human-readable summary of the cancellation result."}},"required":["cancelledCount","creditsRefunded","message"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile/single":{"post":{"operationId":"profileLiveEnrich","summary":"Live fetch LinkedIn profile","tags":["Live fetch"],"description":"Returns an enriched profile with details (work experience, education, skills, location, etc.) for a given LinkedIn profile identifier. **Note:** This endpoint does NOT return emails or phone numbers. To retrieve a person's contact details (emails and phone numbers), use the `POST /contact-details/single` endpoint (synchronous, recommended) or the `POST /individual-reveal/start` + `POST /individual-reveal/poll` pair (asynchronous). These can be found under the **Contact details** section.\n\n<span>⚡ <strong>Rate limit:</strong> 600 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per profile live fetch&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 30 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 30 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"The profile's LinkedIn slug (e.g. 'williamhgates'), full LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates/'), Sales Navigator URN, or LinkedIn user ID (e.g. '443105112')."},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":600,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per profile live fetch","variableCosts":[{"credits":2,"perUnit":"profile live fetch","operation":"liveEnrichPerson"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":30,"displayText":"30 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"oneOf":[{"type":"object","properties":{"found":{"type":"boolean","enum":[true]},"profile":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"isCached404":{"type":["boolean","null"],"description":"True when the profile is not found on LinkedIn but we have cached data in our database."}},"required":["found","profile"],"title":"Profile Found and Enriched","description":"The profile was found and enriched"},{"type":"object","properties":{"found":{"type":"boolean","enum":[false]},"message":{"type":"string"}},"required":["found","message"],"title":"Profile Not Found","description":"The profile was not found on LinkedIn. Check that the URL or identifier is still active."}]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/company/single":{"post":{"operationId":"companyLiveEnrich","summary":"Live fetch LinkedIn company","tags":["Live fetch"],"description":"Returns an enriched company with details for a given LinkedIn company identifier\n\n<span>⚡ <strong>Rate limit:</strong> 600 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per company live fetch&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"type":{"type":"string","enum":["slug","orgId","liUrl"]},"value":{"type":"string","minLength":1,"description":"The company's LinkedIn slug (e.g. 'microsoft'), LinkedIn URL (e.g. 'https://www.linkedin.com/company/microsoft'), LinkedIn organization ID (e.g. '1441'), or Fiber company ID (e.g. 'comp_1441')."},"getHistoricalHeadcount":{"type":"boolean","default":false,"description":"Whether to compute the company's overall employee count over time and recent growth trends. This returns total headcount through time, not a per-department breakdown — for per-department headcount, use the Depth Chart endpoints. No additional cost, but may take longer."}},"required":["apiKey","type","value"]}}}},"x-rate-limit":{"max":600,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per company live fetch","variableCosts":[{"credits":2,"perUnit":"company live fetch","operation":"liveEnrichCompany"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"company":{"type":"object","properties":{"headline":{"type":["string","null"]},"description":{"type":["string","null"]},"employee_count":{"type":["number","null"]},"follower_count":{"type":["number","null"]},"founded_year":{"type":["number","null"]},"industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"linkedin_url":{"type":["string","null"]},"locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"name":{"type":["string","null"]},"org_id":{"type":["string","null"]},"slug":{"type":"string"},"specialties":{"type":["array","null"],"items":{"type":"string"}},"ticker":{"type":["string","null"]},"type":{"type":["string","null"]},"domain":{"type":["string","null"]},"website":{"type":["string","null"]},"est_employee_count_lower_bound":{"type":["number","null"]},"est_employee_count_upper_bound":{"type":["number","null"]},"standardized_industries":{"type":["array","null"],"items":{"type":"string"}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"logo_url":{"type":["string","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"revenue_usd_lower_bound":{"type":["string","null"]},"revenue_usd_upper_bound":{"type":["string","null"]}},"required":["slug"],"description":"The enriched company data. A 404 status is returned if the company was not found."},"isCached404":{"type":["boolean","null"],"description":"True when the company is not found on LinkedIn but we have cached data in our database."}},"required":["company"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/live-fetch/webpage/screenshot":{"post":{"operationId":"webpageScreenshot","summary":"Capture webpage screenshot","tags":["Web Research"],"description":"Captures a screenshot of a public webpage and returns a hosted image URL. Supports both viewport-only and full-page captures. The returned URL is permanent and does not expire.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per screenshot&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"url":{"type":"string","minLength":1,"description":"The URL of the webpage to capture (e.g. 'https://stripe.com/pricing'). Bare domains like 'stripe.com' are also accepted and will be treated as HTTPS."},"fullPage":{"type":"boolean","default":false,"description":"If true, captures the entire scrollable page. Defaults to false (viewport only)."},"format":{"type":"string","enum":["mobile","desktop"],"default":"desktop","description":"Device format for the capture. 'mobile' uses a phone-sized viewport, 'desktop' uses a standard widescreen viewport. Defaults to 'desktop'."},"country":{"type":["string","null"],"pattern":"^[A-Z]{3}$","minLength":3,"maxLength":3,"description":"ISO 3166-1 alpha-3 country code for geo-located capture (e.g. 'USA', 'GBR', 'DEU'). If omitted, defaults to a US-based capture."}},"required":["apiKey","url"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per screenshot","variableCosts":[{"credits":2,"perUnit":"screenshot","operation":"webpageScreenshot"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"screenshotUrl":{"type":"string","format":"uri","description":"Hosted URL of the captured screenshot image in PNG format."},"pageUrl":{"type":"string","format":"uri","description":"The final URL of the page that was screenshotted, after following any redirects. May differ from the input URL if the page redirects."},"pageTitle":{"type":["string","null"],"description":"The HTML title of the screenshotted page, if available."},"imageMediaType":{"type":"string","enum":["image/png"],"description":"MIME type of the screenshot image."},"capturedAt":{"type":"string","description":"ISO 8601 timestamp of when the screenshot was captured."}},"required":["screenshotUrl","pageUrl","imageMediaType","capturedAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/batch/start":{"post":{"operationId":"startBatchLiveEnrich","summary":"Start batch live enrichment","tags":["Live fetch"],"description":"Starts a batch live enrichment job for multiple LinkedIn profiles or companies (up to 10,000). This is an asynchronous task; use the polling endpoint to check progress and get results.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per live fetch&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"type":{"type":"string","enum":["PROFILE","COMPANY"],"description":"Whether to enrich people or companies"},"identifiers":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"maxItems":10000,"description":"List of LinkedIn identifiers. For profiles: LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates'), profile slug (e.g. 'williamhgates'), or Sales Navigator URN (e.g. 'ACwAAAjNR6wBsr_od4UG9Y-HRxg21mwhv5xO0FE') or numeric user ID (e.g. '4532776'). For companies: LinkedIn URL (e.g. 'https://www.linkedin.com/company/microsoft'), company slug (e.g. 'microsoft'), or numeric org ID (e.g. '1035')."}},"required":["apiKey","type","identifiers"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per live fetch","variableCosts":[{"credits":2,"perUnit":"live fetch","operation":"liveEnrichPerson"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"taskId":{"type":"string","description":"Use this ID to poll for progress via the poll endpoint."},"type":{"type":"string","enum":["PROFILE","COMPANY"]},"numIdentifiersEnqueued":{"type":"integer","minimum":0,"description":"Number of unique identifiers queued for enrichment"},"numDuplicatesSkipped":{"type":"integer","minimum":0,"description":"Number of duplicate identifiers skipped."},"numMalformed":{"type":"integer","minimum":0,"description":"Number of identifiers that could not be parsed. numIdentifiersEnqueued + numDuplicatesSkipped + numMalformed = length of your input."}},"required":["taskId","type","numIdentifiersEnqueued","numDuplicatesSkipped","numMalformed"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile-posts":{"post":{"operationId":"profilePostsLiveFetch","summary":"Fetch LinkedIn profile posts","tags":["LinkedIn activity"],"description":"Fetches recent posts from a LinkedIn profile. Returns a paginated feed of posts with optional cursor for pagination. Each page returns up to 50 posts.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"Identifier can be a profile's LinkedIn slug (e.g. 'williamhgates' from <linkedin.com/in/williamhgates>), a Sales Navigator URN (e.g. 'ACwAAA.....'), or a full LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates/')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiProfilePosts"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"postId":{"type":"string"},"author":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"postedAt":{"type":["object","null"],"properties":{"noLaterThan":{"type":["string","null"]},"noEarlierThan":{"type":["string","null"]}}},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numReactions":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"postUrl":{"type":["string","null"]},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"caption":{"type":["string","null"]},"subText":{"type":["string","null"]},"resharedPost":{"type":["object","null"],"properties":{"postId":{"type":"string"},"author":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"postedAt":{"type":["object","null"],"properties":{"noLaterThan":{"type":["string","null"]},"noEarlierThan":{"type":["string","null"]}}},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numReactions":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"postUrl":{"type":["string","null"]},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"caption":{"type":["string","null"]},"subText":{"type":["string","null"]}},"required":["postId"]}},"required":["postId"]}},"cursor":{"type":["string","null"]}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/company-posts":{"post":{"operationId":"companyPostsLiveFetch","summary":"Fetch LinkedIn company posts","tags":["LinkedIn activity"],"description":"Fetches recent posts from a LinkedIn company page. Returns a paginated feed of company posts. Each page contains up to 50 posts.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"Company identifier can be either a LinkedIn company slug/url (e.g., 'microsoft' or 'https://www.linkedin.com/company/microsoft') or a numeric linkedin organization ID (e.g., '1035')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiCompanyPosts"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"postId":{"type":"string"},"author":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"postedAt":{"type":["object","null"],"properties":{"noLaterThan":{"type":["string","null"]},"noEarlierThan":{"type":["string","null"]}}},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numReactions":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"postUrl":{"type":["string","null"]},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"caption":{"type":["string","null"]},"subText":{"type":["string","null"]},"resharedPost":{"type":["object","null"],"properties":{"postId":{"type":"string"},"author":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"postedAt":{"type":["object","null"],"properties":{"noLaterThan":{"type":["string","null"]},"noEarlierThan":{"type":["string","null"]}}},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numReactions":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"postUrl":{"type":["string","null"]},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"caption":{"type":["string","null"]},"subText":{"type":["string","null"]}},"required":["postId"]}},"required":["postId"]}},"cursor":{"type":["string","null"]}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/post-comments":{"post":{"operationId":"postCommentsLiveFetch","summary":"Fetch LinkedIn post comments","tags":["LinkedIn activity"],"description":"Fetches paginated comments for a LinkedIn post. Each page contains up to 10 comments.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"contentId":{"type":"string","minLength":1,"description":"You can get LinkedIn posts from the Profile or Company Posts endpoints. (e.g., 'urn:li:activity:7123456789012345678' or 'urn:li:ugcPost:7391650829398675456')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"},"includeTaggedUsers":{"type":["boolean","null"],"default":false,"description":"When true, also returns the LinkedIn users @-mentioned (tagged) inside each comment. This might be slower so only enable it if needed."}},"required":["apiKey","contentId"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiPostComments"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"commentary":{"type":["string","null"]},"commenter":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"numReactions":{"type":["number","null"]},"numComments":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}},"createdAt":{"type":["string","null"]},"taggedUsers":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"firstName":{"type":["string","null"]},"lastName":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}}},"comments":{"type":["array","null"],"items":{"type":"object","properties":{"commentary":{"type":["string","null"]},"commenter":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"numReactions":{"type":["number","null"]},"numComments":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}},"createdAt":{"type":["string","null"]},"taggedUsers":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"firstName":{"type":["string","null"]},"lastName":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}}}}}}}}},"cursor":{"type":["string","null"]}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/post-reactions":{"post":{"operationId":"postReactionsLiveFetch","summary":"Fetch LinkedIn post reactions","tags":["LinkedIn activity"],"description":"Fetches paginated reactions of a specific type for a LinkedIn post. Each page contains up to 10 reactions.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"contentId":{"type":"string","minLength":1,"description":"You can get LinkedIn posts from the Profile or Company Posts endpoints. (e.g., 'urn:li:activity:7123456789012345678' or 'urn:li:ugcPost:7391650829398675456')"},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"Type of reaction to fetch. If null, all reactions will be fetched."},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"}},"required":["apiKey","contentId"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiPostReactions"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."},"reactor":{"type":["object","null"],"properties":{"userId":{"type":["number","null"]},"entityUrn":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"name":{"type":["string","null"]},"headline":{"type":["string","null"]}}}}}},"cursor":{"type":["string","null"]}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile-comments":{"post":{"operationId":"profileCommentsLiveFetch","summary":"Fetch LinkedIn profile comments","tags":["LinkedIn activity"],"description":"Fetches comments made by a LinkedIn profile. Returns a paginated feed of comments with optional cursor for pagination. Each page returns up to 10 comments.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"Identifier can be a profile's LinkedIn slug (e.g. 'williamhgates' from <linkedin.com/in/williamhgates>), a Sales Navigator URN (e.g. 'ACwAAA.....'), or a full LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates/')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of comments"}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiProfileComments"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"comments":{"type":["array","null"],"items":{"type":"object","properties":{"commentId":{"type":["string","null"]},"content":{"type":["string","null"]},"commentedAgo":{"type":["string","null"]},"commentedAt":{"type":["string","null"]},"commenter":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"entityUrn":{"type":["string","null"]},"name":{"type":["string","null"]}}},"post":{"type":["object","null"],"properties":{"postUrn":{"type":["string","null"]},"postUrl":{"type":["string","null"]},"author":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}},"content":{"type":["string","null"]}}}}}},"cursor":{"type":["string","null"]}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile-reactions":{"post":{"operationId":"profileReactionsLiveFetch","summary":"Fetch LinkedIn profile reactions","tags":["LinkedIn activity"],"description":"Fetches reactions made by a LinkedIn profile. Returns a paginated feed of reactions with optional cursor for pagination. Each page returns up to 10 reactions.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"Identifier can be a profile's LinkedIn slug (e.g. 'williamhgates' from <linkedin.com/in/williamhgates>), a Sales Navigator URN (e.g. 'ACwAAA.....'), or a full LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates/')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of reactions"}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiProfileReactions"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"reactions":{"type":["array","null"],"items":{"type":"object","properties":{"reactionId":{"type":["string","null"]},"type":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."},"target":{"type":["string","null"]},"reactedAgo":{"type":["string","null"]},"reactedAt":{"type":["string","null"]},"reactor":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}},"post":{"type":["object","null"],"properties":{"postUrn":{"type":["string","null"]},"postUrl":{"type":["string","null"]},"author":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}},"content":{"type":["string","null"]}}},"comment":{"type":["object","null"],"properties":{"content":{"type":["string","null"]},"author":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}}}}}}},"cursor":{"type":["string","null"]}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/posts/search":{"post":{"operationId":"postSearchByKeywords","summary":"Search LinkedIn posts by keywords","tags":["LinkedIn activity"],"description":"Search LinkedIn posts using keyword-based queries. Returns a paginated list of posts matching the search criteria, up to 50 per page.\n\n**Keyword Search Syntax:**\n- **Exact phrase:** Wrap keywords in quotes for exact phrase matching. \"head of sales\" matches the exact phrase, not the individual words.\n- **AND:** Use **AND** between keywords to require both terms. sales **AND** engineering matches posts containing both words.\n- **OR:** Use **OR** between keywords to match posts containing any of the terms. sales **OR** marketing matches posts with either word.\n- **NOT:** Use **NOT** before a keyword to exclude posts containing that term. sales **NOT** recruiter matches posts with \"sales\" but without \"recruiter\".\n- **Parentheses:** Group terms to control operator precedence. (sales **OR** marketing) **AND** \"series A\" finds posts about either sales or marketing that also mention \"series A\".\n\n**Order of precedence:**\n1. **Quotes (\" \"):** Exact phrase match. Phrase matching occurs before any Boolean logic is applied.\n2. **Parentheses (()):** Used to explicitly group Boolean logic. Grouped expressions are evaluated before ungrouped logic.\n3. **NOT:** Applied after any parentheses or quoted phrases are resolved.\n4. **AND:** Evaluated after **NOT** but before **OR**.\n5. **OR:** Lowest precedence among Boolean operators.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"keywords":{"type":"string","minLength":1,"maxLength":10000,"description":"Keywords to search for in LinkedIn posts (comma-separated)"},"recency":{"type":["string","null"],"enum":["Day","Week","Month","Quarter","HalfYear","Year",null],"description":"Filter by post age. Options: Day, Week, Month, Quarter, HalfYear, Year. Defaults to all time if omitted."},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"}},"required":["apiKey","keywords"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiProfilePosts"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"posts":{"type":"array","items":{"type":"object","properties":{"postId":{"type":"string"},"content":{"type":["string","null"]},"postUrl":{"type":["string","null"]},"author":{"type":["object","null"],"properties":{"type":{"type":["string","null"]},"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"headline":{"type":["string","null"]},"website":{"type":["string","null"]},"profilePicture":{"type":["string","null"]}}},"publishedAt":{"type":["string","null"]},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"article":{"type":["object","null"],"properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"url":{"type":["string","null"]},"description":{"type":["string","null"]},"imageUrl":{"type":["string","null"]}}},"originalPostId":{"type":["string","null"]},"originalPost":{"type":["object","null"],"additionalProperties":{}},"resharedBy":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]}}},"newsletterUrl":{"type":["string","null"]},"newsletterTitle":{"type":["string","null"]},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numLikes":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}}},"required":["postId"]}},"cursor":{"type":["string","null"]}},"required":["posts"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/standardize/profile/single":{"post":{"operationId":"standardizeProfile","summary":"Standardize LinkedIn profile entity URN","tags":["Repair Data"],"description":"Resolves a LinkedIn entity URN to a proper LinkedIn profile URL. Supports a variety of URN formats from different LinkedIn sources (including ACoAA... and ACwAA... prefixes). Accepts either a raw entity URN or a full LinkedIn URL containing an entity URN in the slug position (e.g., 'https://www.linkedin.com/in/ACoAADVMtbkB...').\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per profile standardization&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","minLength":1,"description":"A LinkedIn entity URN (e.g., 'ACoAADVMtbkBbZIxJxJjGEQV7SrQCMml8ni7qyg') or a full LinkedIn profile URL containing an entity URN (e.g., 'https://www.linkedin.com/in/ACoAADVMtbkBbZIxJxJjGEQV7SrQCMml8ni7qyg'). Entity URNs typically start with 'ACo' or 'ACw'."}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per profile standardization","variableCosts":[{"credits":1,"perUnit":"profile standardization","operation":"standardizePersonSlug"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"linkedinUrl":{"type":"string","description":"The resolved LinkedIn profile URL (e.g., 'https://www.linkedin.com/in/williamhgates')"},"fullName":{"type":["string","null"],"description":"The person's full name, if available"}},"required":["linkedinUrl"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/standardize/company/single":{"post":{"operationId":"standardizeCompany","summary":"Standardize LinkedIn company identifier","tags":["Repair Data"],"description":"Resolves a company LinkedIn identifier (slug, organization ID, or URL) to a standardized LinkedIn company URL with metadata. Useful for normalizing company identifiers from different sources.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per company standardized&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","minLength":1,"description":"The company's LinkedIn slug (e.g., 'microsoft'), numeric LinkedIn organization ID (e.g., '1035'), or full LinkedIn URL (e.g., 'https://www.linkedin.com/company/microsoft')."}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per company standardized","variableCosts":[{"credits":1,"perUnit":"company standardized","operation":"standardizeCompanySlug"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"linkedinUrl":{"type":"string","description":"The standardized LinkedIn company URL (e.g., 'https://www.linkedin.com/company/microsoft')"},"name":{"type":["string","null"],"description":"The company name, if available"},"websiteUrl":{"type":["string","null"],"description":"The company's website URL, if available"}},"required":["linkedinUrl"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/standardize/company/bulk":{"post":{"operationId":"standardizeCompanyBulk","summary":"Bulk standardize LinkedIn company identifiers","tags":["Repair Data"],"description":"Resolves many company LinkedIn identifiers (slug, organization ID, or URL) to standardized LinkedIn company URLs with metadata. Unresolved identifiers are listed separately and are not charged. If you have company names or domains instead of LinkedIn identifiers, use the bulk kitchen sink endpoint (POST /v1/kitchen-sink/bulk/company) instead.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per company standardized&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 2 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 2 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifiers":{"type":"array","items":{"type":"string","minLength":1,"description":"The company's LinkedIn slug (e.g., 'microsoft'), numeric LinkedIn organization ID (e.g., '1035'), or full LinkedIn URL (e.g., 'https://www.linkedin.com/company/microsoft')."},"minItems":1,"maxItems":50,"description":"Company identifiers to standardize. Max 50 per request. Duplicate identifiers — including the same company submitted as a slug, a full LinkedIn URL, or in different letter casing — are deduped and charged only once."}},"required":["apiKey","identifiers"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per company standardized","variableCosts":[{"credits":1,"perUnit":"company standardized","operation":"standardizeCompanySlug"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":120,"displayText":"2 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"companiesFound":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":"string","description":"The standardized LinkedIn company URL (e.g., 'https://www.linkedin.com/company/microsoft')"},"name":{"type":["string","null"],"description":"The company name, if available"},"websiteUrl":{"type":["string","null"],"description":"The company's website URL, if available"},"identifier":{"type":"string","minLength":1,"description":"The input identifier this result was resolved from (slug, organization ID, or URL as provided in the request)."}},"required":["linkedinUrl","identifier"]},"maxItems":50,"description":"Successfully resolved companies. Use the `identifier` field to match each result back to your input; ordering is not guaranteed."},"unresolvedIdentifiers":{"type":"array","items":{"type":"string"},"description":"Input identifiers that could not be resolved to a LinkedIn company. Reflects the deduplicated set — equivalent identifiers submitted more than once appear at most once."}},"required":["companiesFound","unresolvedIdentifiers"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/email-to-person/single":{"post":{"operationId":"reverseEmailLookup","summary":"Find person by email (single)","tags":["Reverse lookup"],"description":"Given an email address, find the person's LinkedIn profile and personal details.\nIf the person's name, company, or other identifiers are also available, use the Kitchen Sink endpoint instead — it accepts all available signals and produces better matches.\nTo avoid 429 errors, space requests evenly (such as 1/60th the rate limit per second) rather than bursting them all at once.\n\nBilling: you are charged for one lookup operation per request — a hit bills `emailToLinkedinUrl`, a completed miss that queried providers bills `emailToLinkedinMiss`. Cached not-found results and rejected inputs are not billed.\n\n<span>⚡ <strong>Rate limit:</strong> 3500 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per email lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"email":{"type":"string","format":"email","minLength":1,"description":"The email address of a person whose LinkedIn profile you want to find."}},"required":["apiKey","email"]}}}},"x-rate-limit":{"max":3500,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per email lookup","variableCosts":[{"credits":2,"perUnit":"email lookup","operation":"emailToLinkedinUrl"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"description":"LinkedIn profiles matching this email, ordered by best match. Usually contains one result.","default":[]},"rejection":{"type":["object","null"],"properties":{"reason":{"type":"string","enum":["disposable_or_anonymous_email","invalid_tld","autogenerated_icloud_email","digits_only_username","role_based_mailbox","junk_username","spam_domain","bot_farm_email","mailing_list"],"description":"Machine-readable rejection reason"},"message":{"type":"string","description":"Human-readable explanation"}},"required":["reason","message"],"description":"Present when the email is unresolvable (e.g. disposable, anonymous relay, or role-based address). The request succeeded but there is no person to find."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/email-to-person/single/lite":{"post":{"operationId":"liteReverseEmailLookup","summary":"Find person by email (lite, high-volume)","tags":["Reverse lookup"],"description":"Given an email address, find the person's LinkedIn profile.\nLite version optimized for high-volume usage at lower cost. Skips expensive yield increasing operations.\n\n<span>⚡ <strong>Rate limit:</strong> 3000 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per email lookup (lite)&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 30 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 30 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"email":{"type":"string","format":"email","minLength":1,"description":"The email address of a person whose LinkedIn profile you want to find."}},"required":["apiKey","email"]}}}},"x-rate-limit":{"max":3000,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per email lookup (lite)","variableCosts":[{"credits":1,"perUnit":"email lookup (lite)","operation":"liteReverseEmailLookup"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":30,"displayText":"30 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"description":"LinkedIn profiles matching this email, ordered by best match. Usually contains one result.","default":[]},"rejection":{"type":["object","null"],"properties":{"reason":{"type":"string","enum":["disposable_or_anonymous_email","invalid_tld","autogenerated_icloud_email","digits_only_username","role_based_mailbox","junk_username","spam_domain","bot_farm_email","mailing_list"],"description":"Machine-readable rejection reason"},"message":{"type":"string","description":"Human-readable explanation"}},"required":["reason","message"],"description":"Present when the email is unresolvable (e.g. disposable, anonymous relay, or role-based address). The request succeeded but there is no person to find."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/phone-to-person/single":{"post":{"operationId":"reversePhoneLookup","summary":"Find person or company by phone (single)","tags":["Reverse lookup"],"description":"Given a phone number, find the associated LinkedIn profile or company.\n\nMobile and home phones typically resolve to people, while front desk or business phones may resolve to companies.\n\nOnly charges 1 credit when a result is found. No charge for invalid numbers or misses.\n\nIf you have additional identifiers (name, company, email) beyond just the phone number, use the Kitchen Sink endpoint instead for better match quality.\n\n<span>⚡ <strong>Rate limit:</strong> 600 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per phone lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 30 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 30 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"phoneNumber":{"type":"string","minLength":1,"description":"The phone number to look up. Accepts E.164 format (+12125551234) or various national formats."}},"required":["apiKey","phoneNumber"]}}}},"x-rate-limit":{"max":600,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per phone lookup","variableCosts":[{"credits":3,"perUnit":"phone lookup","operation":"reversePhoneLookup"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":30,"displayText":"30 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"results":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["profile"]},"profile":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]}},"required":["type","profile"]},{"type":"object","properties":{"type":{"type":"string","enum":["company"]},"company":{"type":"object","properties":{"headline":{"type":["string","null"]},"description":{"type":["string","null"]},"employee_count":{"type":["number","null"]},"follower_count":{"type":["number","null"]},"founded_year":{"type":["number","null"]},"industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"linkedin_url":{"type":["string","null"]},"locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"name":{"type":["string","null"]},"org_id":{"type":["string","null"]},"slug":{"type":"string"},"specialties":{"type":["array","null"],"items":{"type":"string"}},"ticker":{"type":["string","null"]},"type":{"type":["string","null"]},"domain":{"type":["string","null"]},"website":{"type":["string","null"]},"est_employee_count_lower_bound":{"type":["number","null"]},"est_employee_count_upper_bound":{"type":["number","null"]},"standardized_industries":{"type":["array","null"],"items":{"type":"string"}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"logo_url":{"type":["string","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"revenue_usd_lower_bound":{"type":["string","null"]},"revenue_usd_upper_bound":{"type":["string","null"]}},"required":["slug"]}},"required":["type","company"]}]},"description":"LinkedIn profiles or companies matching this phone number. Usually contains one result.","default":[]},"rejectionReason":{"type":["object","null"],"properties":{"reason":{"type":"string","description":"Why the phone number couldn't be resolved"}},"required":["reason"],"description":"Present when the phone number is unresolvable (e.g. invalid format, not found)."}},"required":["results"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/google-maps-search/start":{"post":{"operationId":"google-maps-search","summary":"Start a search on Google Maps","tags":["Google maps"],"description":"Start a search for local businesses or other places of interest on Google Maps\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per business found&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":["string","null"],"description":"An optional name for the project for reference purposes."},"query":{"type":"string","minLength":1,"description":"The search query to run on Google Maps. Do not include a location info here. Examples: 'dominos pizza', 'real estate agent'."},"maxResults":{"type":"integer","exclusiveMinimum":0,"maximum":10000,"default":100,"description":"The maximum number of Google Maps results to return."},"strategy":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","description":"Does a broad search across all cities in the United States. Not as exhaustive as, for example, a city-specific search.","enum":["whole-usa"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","description":"Use 'specific-areas' to search for places in specific areas","enum":["specific-areas"]},"unionAll":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"regionType":{"type":"string","description":"Use 'circle' to search for places in a circle","enum":["circle"]},"center":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90,"description":"The latitude of the point."},"longitude":{"type":"number","minimum":-180,"maximum":180,"description":"The longitude of the point."}},"required":["latitude","longitude"]},"radiusMiles":{"type":"number","exclusiveMinimum":0,"maximum":250,"default":25,"description":"The radius of the circle in miles."}},"required":["regionType","center"]},{"type":"object","properties":{"regionType":{"type":"string","description":"Use 'rectangle' to search for places in a rectangle","enum":["rectangle"]},"northwestCorner":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90,"description":"The latitude of the point."},"longitude":{"type":"number","minimum":-180,"maximum":180,"description":"The longitude of the point."}},"required":["latitude","longitude"],"description":"The coordinates of the north west corner of the rectangle"},"southeastCorner":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90,"description":"The latitude of the point."},"longitude":{"type":"number","minimum":-180,"maximum":180,"description":"The longitude of the point."}},"required":["latitude","longitude"],"description":"The coordinates of the south east corner of the rectangle"}},"required":["regionType","northwestCorner","southeastCorner"]}]},"description":"An array of region definitions (rectangles and/or circles). All regions in this array will be unioned together to form the total search area."}},"required":["strategy","unionAll"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["world-cities"]},"countriesAndRegions":{"type":"object","properties":{"unionAll":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"subtractAll":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"smallestCityTierID":{"type":["string","null"],"enum":["mega","major","large","medium","minor","small","tiny",null]},"largestCityTierID":{"type":["string","null"],"enum":["mega","major","large","medium","minor","small","tiny",null]}},"required":["strategy","countriesAndRegions"]}],"description":"The strategy for searching places."}},"required":["apiKey","query","strategy"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per business found","variableCosts":[{"credits":3,"perUnit":"business found","operation":"googleMapsScrape"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"searchID":{"type":"string","description":"The ID of the Google Maps search. Use this to poll for the search results."}},"required":["searchID"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/kitchen-sink/person":{"post":{"operationId":"KitchenSinkProfile","summary":"Kitchen sink person lookup","tags":["Kitchen sink"],"description":"Search for a person using a variety of parameters such as LinkedIn slug, LinkedIn URL, email, or current company information. Returns profile data for the person if found. Providing more information (e.g. name + company + LinkedIn) improves match accuracy.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay per person: 2 credits per lookup, plus 2 additional credits when the liveFetch flag is set.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. LinkedIn live fetch credits only apply when the liveFetch flag is set.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"profileIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person (e.g. 'williamhgates' from linkedin.com/in/williamhgates)."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person (e.g. 'https://www.linkedin.com/in/williamhgates'). The https:// and www prefixes are optional."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["userID"]},"value":{"type":"string","description":"The LinkedIn user ID of the person."}},"required":["identifier","value"]},{"type":"null"}],"description":"LinkedIn profile identifier (slug or URL). Provides the best match accuracy."},"emailAddress":{"type":["string","null"],"format":"email","description":"Email address to look up. Second-best accuracy after profileIdentifier."},"personName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the person to search for. It can have first name and/or last name. Try to pass in names as present on LinkedIn."},"looseMatch":{"type":"boolean","default":false,"description":"If true, allows partial and out-of-order matches. If false, only exact full name matches are returned."}},"description":"Person's name for matching. Best used with companyDomain or companyIdentifier."},"jobTitle":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The job title of the person to search for"}}},"companyIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the person's current company."}},"required":["identifier","value"]},{"type":"null"}],"description":"LinkedIn identifier for the person's current company. Used with personName for matching."},"linkedinHeadline":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The headline of the person's LinkedIn profile. This is the first line of their profile."},"looseMatch":{"type":"boolean","default":false,"description":"Whether to allow a loose match on the headline. If true, we allow for additional words between the terms in the headline (e.g. 'Software Engineer' would match 'Software Development Engineer'). If false, we require a strict phrase match."}}},"companyName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the company the person is currently working at"}}},"companyDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The domain of the company the person is currently working at"}},"description":"Domain of the person's current company (e.g. 'fiber.ai'). Used with personName for matching."},"profileLocation":{"type":["object","null"],"properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"ISO 3166-1 alpha-3 country code (e.g. 'USA', 'GBR')."},"stateName":{"type":["string","null"],"description":"State or region name in plain text (e.g. 'California', 'New York')."},"locality":{"type":["string","null"],"description":"Free-text location string. Use this when the location data does not clearly separate into country, state, or city."}},"description":"Location of the person. Accepts country code, state name, and/or a free-text locality string."},"numProfiles":{"type":"integer","minimum":1,"maximum":10,"default":1,"description":"Maximum number of profile results to return per lookup. Defaults to 1."},"liveFetch":{"type":["boolean","null"],"default":false,"description":"When true, triggers a real-time LinkedIn profile fetch. Costs additional credits. Useful for profiles not yet in the database or to get the freshest data."},"forceCompanyMatch":{"type":["boolean","null"],"default":false,"description":"When true, requires that the matched profile works at the specified company. Without this, the API may return profiles that match by name but work elsewhere."},"schoolName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the school the person is currently attending or has attended. If provided, we will lookup the person by school name."}}},"schoolIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the school"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the school"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the school"}},"required":["identifier","value"]},{"type":"null"}],"description":"The identifier of the school the person is currently attending or has attended. If provided, we will lookup the person by school identifier."},"schoolDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The domain of the school the person is currently attending or has attended. If provided, we will lookup the person by school domain."}}},"fuzzySearch":{"type":["boolean","null"],"default":false,"description":"When true, enables fuzzy name matching. Useful when exact name spelling is uncertain."},"thoroughness":{"type":["string","null"],"enum":["low","high",null],"default":"high","description":"Controls how thoroughly to search. Higher values recover more matches at the cost of additional latency; lower values return faster. Omit to use the recommended default."},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"When true, returns detailed_education[] with school_details for each education entry."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"When true, returns detailed_work_experiences[] with company_details (domains, preferred_name, linkedin_primary_slug, li_org_id) for each work experience. Use this to get company domains for a person."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Pay per person: 2 credits per lookup, plus 2 additional credits when the liveFetch flag is set.","variableCosts":[{"credits":2,"perUnit":"kitchen sink lookup","operation":"kitchenSinkPerson"},{"credits":2,"perUnit":"LinkedIn live fetch","operation":"liveEnrichPerson"}],"comment":"LinkedIn live fetch credits only apply when the liveFetch flag is set.","chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"description":"The list of profiles found for the given query"},"message":{"type":["string","null"],"description":"Additional context if no matching profile was found."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/kitchen-sink/company":{"post":{"operationId":"kitchenSinkCompany","summary":"Kitchen sink company lookup","tags":["Kitchen sink"],"description":"Search for a company using a variety of parameters such as LinkedIn slug, LinkedIn URL, name, etc. Returns complete company data if found.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per company lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 30 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 30 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companyIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the person's current company."}},"required":["identifier","value"]},{"type":"null"}],"description":"A unique identifier for the company. Accepts one of: linkedinSlug, linkedinUrl, or linkedinOrgID. Providing this increases the accuracy and speed of the lookup. If this is provided, you do not need to supply companyName or companyDomain."},"companyName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"description":"The name of the company. All input words must match."}}},"companyDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"description":"The domain of the company. URL prefixes (https, www) are automatically stripped. Subdomains and path segments are preserved to support domains like 'instagram.com/company' or 'my_company.netlify.app'."}}},"companyLocation":{"type":["object","null"],"properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"ISO 3166-1 alpha-3 country code (e.g. 'USA', 'GBR')."},"stateName":{"type":["string","null"],"description":"State or region name in plain text (e.g. 'California', 'New York')."},"locality":{"type":["string","null"],"description":"Free-text location string. Use this when the location data does not clearly separate into country, state, or city."}},"description":"Company headquarters location. Helps disambiguate companies with similar names or domains by boosting matches in the specified location."},"numCompanies":{"type":"integer","minimum":1,"maximum":10,"default":1,"description":"Maximum number of company results to return. Sorted by best match. Defaults to 1."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per company lookup","variableCosts":[{"credits":2,"perUnit":"company lookup","operation":"kitchenSinkCompany"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":30,"displayText":"30 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}},"description":"The list of companies found for the given query"},"message":{"type":["string","null"],"description":"Additional context if no matching company was found."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/kitchen-sink/bulk/profile":{"post":{"operationId":"KitchenSinkBulkProfile","summary":"Kitchen sink bulk profile lookup","tags":["Kitchen sink"],"description":"Search for many people using a variety of parameters such as LinkedIn slug, LinkedIn URL, or current company information. Returns profile data for each person if found. Providing more information per person (e.g. name + company + LinkedIn) improves match accuracy.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay per person: 2 credits per lookup, plus 2 additional credits when the liveFetch flag is set.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. LinkedIn live fetch credits only apply when the liveFetch flag is set.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 3 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 3 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"profiles":{"type":"array","items":{"type":"object","properties":{"companyDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The domain of the company the person is currently working at"}},"description":"Domain of the person's current company (e.g. 'fiber.ai'). Used with personName for matching."},"companyName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the company the person is currently working at"}}},"jobTitle":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The job title of the person to search for"}}},"personName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the person to search for. It can have first name and/or last name. Try to pass in names as present on LinkedIn."},"looseMatch":{"type":"boolean","default":false,"description":"If true, allows partial and out-of-order matches. If false, only exact full name matches are returned."}},"description":"Person's name for matching. Best used with companyDomain or companyIdentifier."},"numProfiles":{"type":"integer","minimum":1,"maximum":10,"default":1,"description":"Maximum number of profile results to return per lookup. Defaults to 1."},"profileIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person (e.g. 'williamhgates' from linkedin.com/in/williamhgates)."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person (e.g. 'https://www.linkedin.com/in/williamhgates'). The https:// and www prefixes are optional."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["userID"]},"value":{"type":"string","description":"The LinkedIn user ID of the person."}},"required":["identifier","value"]},{"type":"null"}],"description":"LinkedIn profile identifier (slug or URL). Provides the best match accuracy."},"companyIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the person's current company."}},"required":["identifier","value"]},{"type":"null"}],"description":"LinkedIn identifier for the person's current company. Used with personName for matching."},"emailAddress":{"type":["string","null"],"format":"email","description":"Email address to look up. Second-best accuracy after profileIdentifier."}},"description":"Parameters for searching for a person. Provide at least one parameter. More parameters improve match accuracy."},"minItems":1,"maxItems":50},"liveFetch":{"type":["boolean","null"],"default":false,"description":"When true, triggers a real-time LinkedIn profile fetch. Costs additional credits. Useful for profiles not yet in the database or to get the freshest data."},"forceCompanyMatch":{"type":["boolean","null"],"default":false,"description":"When true, requires that the matched profile works at the specified company. Without this, the API may return profiles that match by name but work elsewhere."},"fuzzySearch":{"type":["boolean","null"],"default":false,"description":"When true, enables fuzzy name matching. Useful when exact name spelling is uncertain."},"thoroughness":{"type":["string","null"],"enum":["low","high",null],"default":"low","description":"Controls how thoroughly to search across all profiles in the batch. Higher values recover more matches at the cost of additional per-row latency; lower values return faster. Omit to use the recommended default."},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"When true, returns detailed_education[] with school_details for each education entry."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"When true, returns detailed_work_experiences[] with company_details (domains, preferred_name, linkedin_primary_slug, li_org_id) for each work experience. Use this to get company domains for a person."}},"required":["apiKey","profiles"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"Pay per person: 2 credits per lookup, plus 2 additional credits when the liveFetch flag is set.","variableCosts":[{"credits":2,"perUnit":"lookup","operation":"kitchenSinkPerson"},{"credits":2,"perUnit":"LinkedIn live fetch","operation":"liveEnrichPerson"}],"comment":"LinkedIn live fetch credits only apply when the liveFetch flag is set.","chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":180,"displayText":"3 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]}},"description":"Profiles found for each lookup. A 2D array because each lookup may yield multiple profiles."},"message":{"type":["string","null"],"description":"Additional context if no matching profile was found."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/kitchen-sink/bulk/company":{"post":{"operationId":"kitchenSinkBulkCompany","summary":"Kitchen sink bulk company lookup","tags":["Kitchen sink"],"description":"Search for many companies using a variety of parameters such as LinkedIn slug, LinkedIn URL, name, etc. Returns complete company data if found.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per company lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 3 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 3 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companies":{"type":"array","items":{"type":"object","properties":{"companyIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the person's current company."}},"required":["identifier","value"]},{"type":"null"}],"description":"A unique identifier for the company. Accepts one of: linkedinSlug, linkedinUrl, or linkedinOrgID. Providing this increases the accuracy and speed of the lookup. If this is provided, you do not need to supply companyName or companyDomain."},"companyName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"description":"The name of the company. All input words must match."}}},"companyDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"description":"The domain of the company. URL prefixes (https, www) are automatically stripped. Subdomains and path segments are preserved to support domains like 'instagram.com/company' or 'my_company.netlify.app'."}}},"companyLocation":{"type":["object","null"],"properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"ISO 3166-1 alpha-3 country code (e.g. 'USA', 'GBR')."},"stateName":{"type":["string","null"],"description":"State or region name in plain text (e.g. 'California', 'New York')."},"locality":{"type":["string","null"],"description":"Free-text location string. Use this when the location data does not clearly separate into country, state, or city."}},"description":"Company headquarters location. Helps disambiguate companies with similar names or domains by boosting matches in the specified location."},"numCompanies":{"type":"integer","minimum":1,"maximum":10,"default":1,"description":"Maximum number of company results to return. Sorted by best match. Defaults to 1."}},"description":"Parameters for searching for a company. Provide at least one parameter. More parameters improve match accuracy."},"minItems":1,"maxItems":50}},"required":["apiKey","companies"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per company lookup","variableCosts":[{"credits":2,"perUnit":"company lookup","operation":"kitchenSinkCompany"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":180,"displayText":"3 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}}},"description":"Companies found for each lookup. A 2D array because each lookup may yield multiple companies."},"message":{"type":["string","null"],"description":"Additional context if no matching company was found."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/typeahead/company":{"post":{"operationId":"companyTypeahead","summary":"Company/School/Investor Typeahead","tags":["Typeaheads"],"description":"Search for companies, schools/universities, and investors by name. Supports partial inputs, which can enable typeaheads in your UI.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"startsWith":{"type":"string","minLength":1},"orgType":{"type":["string","null"],"enum":["investor","school",null],"description":"The organization type filter. Use 'investor', 'school', or omit for all types."}},"required":["apiKey","startsWith"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getCompanyFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]}}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/typeahead/job-title":{"post":{"operationId":"jobTitleRewrite","summary":"Job Title Synonym Expansion","tags":["Typeaheads"],"description":"Expand a job title into synonyms and related variations. Useful for broadening job title searches to improve yield.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"maxLength":200,"description":"The job title to expand into synonyms and variations."},"limit":{"type":"integer","minimum":1,"maximum":50,"default":10,"description":"Maximum number of suggestions to return."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"jobTitleRewrite"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"suggestions":{"type":"array","items":{"type":"string"}}},"required":["suggestions"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/typeahead/location":{"post":{"operationId":"locationTypeahead","summary":"Location typeahead","tags":["Typeaheads"],"description":"Get the latitude/longitude of a given city, including prefixes (e.g. 'san fr'). This makes it good for typeaheads in your UI.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"maxLength":100,"description":"The search query for a location. Accepts a city name or ZIP/postal code, either complete (e.g. 'New York') or partial (e.g. 'san fr'). Neighborhoods, street addresses, states, and countries are not supported."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"geolocation"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]}},"presetRegions":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["circle"]},"slug":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]},"name":{"type":"string"},"emoji":{"type":"string"},"countryCode":{"type":"string","minLength":3,"maxLength":3},"cities":{"type":"array","items":{"type":"string"},"maxItems":5},"synonyms":{"type":"array","items":{"type":"string"}},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180},"radiusMiles":{"type":"number","minimum":0,"maximum":12500}},"required":["type","slug","name","emoji","countryCode","cities","synonyms","latitude","longitude","radiusMiles"]},{"type":"object","properties":{"type":{"type":"string","enum":["polygon"]},"slug":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]},"name":{"type":"string"},"emoji":{"type":"string"},"countryCode":{"type":"string","minLength":3,"maxLength":3},"cities":{"type":"array","items":{"type":"string"},"maxItems":5},"synonyms":{"type":"array","items":{"type":"string"}},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["type","slug","name","emoji","countryCode","cities","synonyms","vertices"]}]},"description":"Preset metro area regions matching the query. Each includes a slug usable with the preset-region strategy in location-based search endpoints, plus geometry and major cities for display."}},"required":["data","presetRegions"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/typeahead/skills":{"post":{"operationId":"skillsTypeahead","summary":"Skills Typeahead","tags":["Typeaheads"],"description":"Search for professional skills by name. Supports prefix and partial matches with relevance-based ranking. Useful for building autocomplete in search UIs.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"description":"Search query for skill names. Supports prefix and partial matches."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"skill":{"type":"string","minLength":1,"description":"The skill name"},"rank":{"type":"integer","exclusiveMinimum":0,"description":"Relevance rank within this result set (1 = best match)"}},"required":["skill","rank"]}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/validate-email/single":{"post":{"operationId":"emailBounceDetection","summary":"Validate a single email","tags":["Validation"],"description":"Checks if a given email is likely to bounce using a waterfall of strategies. Works for catch-all email addresses, which are increasingly common yet hard for other APIs to validate.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per email validation&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"email":{"type":"string","format":"email","description":"The email address to validate."}},"required":["apiKey","email"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per email validation","variableCosts":[{"credits":1,"perUnit":"email validation","operation":"validateEmail"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"email":{"type":"string","format":"email","description":"The email address that was validated."},"is_catch_all":{"type":"boolean","description":"Whether the address is a catch-all email."},"is_role_based":{"type":"boolean","description":"Whether the address is role-based (e.g. 'sales@' or 'hello@') rather than a personal email."},"is_disposable":{"type":"boolean","description":"Whether the address uses a disposable email provider."},"is_consumer":{"type":"boolean","description":"Whether the address uses a consumer email service (e.g. Gmail, Outlook) rather than a commercial service."},"email_provider":{"type":"string","description":"The email provider."},"verdict":{"type":"string","enum":["ok","undeliverable","risky","inconclusive"],"description":"The final estimate of whether the email is likely to be correct and deliverable."},"deliverability_score":{"type":"integer","minimum":0,"maximum":100,"description":"The deliverability score out of 100. Higher scores are better."}},"required":["email","is_catch_all","is_role_based","is_disposable","is_consumer","email_provider","verdict","deliverability_score"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/validate-phone/single":{"post":{"operationId":"validatePhoneNumber","summary":"Validate a single phone number","tags":["Validation"],"description":"Validates a phone number and returns detailed information including whether it's valid, reachable (active/alive), carrier information, and the caller ID name associated with the number.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per phone validation&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"phoneNumber":{"type":"string","description":"Phone number to validate. E.164 (e.g. +14155551234) is recommended; other formats with spaces, dashes, or parentheses are accepted."},"patience":{"type":["string","null"],"enum":["MINIMUM","LOW","MEDIUM","HIGH","EXTREME","MAXIMUM",null],"description":"How long to wait for phone-number verification after a number is found. Higher patience increases average response time but improves identity and reachability accuracy. MINIMUM is the least thorough verification option."}},"required":["apiKey","phoneNumber"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per phone validation","variableCosts":[{"credits":3,"perUnit":"phone validation","operation":"validatePhone"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"formattedNumber":{"type":["string","null"],"description":"Phone number in international format (e.g., +1 234 567 8900)"},"nationalFormat":{"type":["string","null"],"description":"Phone number in national format"},"countryCallingCode":{"type":["string","null"],"description":"Country calling code with plus prefix (e.g. '+1', '+44'), derived from validation result; not used as request input."},"countryIsoCode":{"type":["string","null"],"description":"ISO 3166-1 alpha-2 country code (e.g. 'US', 'GB'), derived from validation result; not used as request input."},"countryName":{"type":["string","null"],"description":"Full country name (e.g. 'United States'), derived from validation result."},"isValid":{"type":"boolean","description":"Whether the phone number is valid"},"isReachable":{"type":"string","enum":["reachable","not_reachable","bad_number","unknown"],"description":"Whether the phone number is currently reachable (alive/active status)"},"isPorted":{"type":"boolean","description":"Whether the number has been ported to a different carrier"},"isRoaming":{"type":"boolean","description":"Whether the number is currently roaming"},"currentCarrier":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"networkType":{"type":["string","null"]},"country":{"type":["string","null"]}},"description":"Information about the current carrier"},"originalCarrier":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"networkType":{"type":["string","null"]},"country":{"type":["string","null"]}},"description":"Information about the original carrier that issued the number"},"callerIdName":{"type":["string","null"],"description":"The name associated with this phone number (what shows up on caller ID)"},"validationScore":{"type":"integer","minimum":0,"maximum":10,"description":"Validation score from 0-10 (10 = valid and reachable, 6 = valid but not reachable, 2 = unknown, 0 = invalid)"},"validationStatus":{"type":"string","enum":["valid_reachable","valid_not_reachable","invalid","unknown"],"description":"Overall validation status"}},"required":["isValid","isReachable","isPorted","isRoaming","validationScore","validationStatus"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/nlp-search/parse":{"post":{"operationId":"nlpSearchParse","summary":"Parse natural language to search params","tags":["Agentic search"],"description":"Parses a natural language query into structured search parameters without executing the search.\n\nUse the returned `suggestedAction` to determine your next step:\n- `combinedSearch`: pass `parsedParams.companySearchParams` and `parsedParams.profileSearchParams` to POST /v1/combined-search/paginated\n- `companySearch`: pass `parsedParams.companySearchParams` to POST /v1/company-search\n- `profileSearch`: pass `parsedParams.profileSearchParams` to POST /v1/combined-search/paginated (with only profileConfig)\n- `personLookup`: use the `parsedParams.persons` array with POST /v1/person-lookup/enrich (one call per person)\n- `companyLookup`: use the `parsedParams.companies` array with POST /v1/company-lookup/enrich (one call per company)\n- `none`: query could not be interpreted\n\nAlternatively, use POST /v1/nlp-search/run to parse and execute in a single call.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"maxLength":5000,"description":"Natural language search query to parse into structured filters."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"textToSearchParams"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"searchId":{"type":"string","description":"Unique identifier for this search session. Stable across paginated requests — all pages share the same searchId."},"parsedParams":{"oneOf":[{"type":"object","properties":{"queryType":{"type":"string","enum":["structuredSearch"]},"companySearchParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Parsed company search filters. Null if query only targets people."},"profileSearchParams":{"type":["object","null"],"properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["operator","terms","negate"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}}},"required":["operator","clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"required":["getDetailedEducation","getDetailedWorkExperience"],"additionalProperties":false,"description":"Parsed people search filters. Null if query only targets companies.","default":{}}},"required":["queryType"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["personLookup"]},"persons":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Person's full name."},"email":{"type":["string","null"],"description":"Email address."},"phoneNumber":{"type":["string","null"],"description":"Phone number used to identify the person (reverse lookup), e.g. '+14155551234'. Present when the phone is the locator — not when the user only wants a phone revealed after finding someone by name."},"linkedinUrl":{"type":["string","null"],"description":"LinkedIn profile URL."},"companyName":{"type":["string","null"],"description":"Company the person works at."},"jobTitle":{"type":["string","null"],"description":"Job title."},"contactDetails":{"type":["object","null"],"properties":{"workEmail":{"type":["boolean","null"],"description":"Set true when the user wants this person's work email (e.g. 'work email', or generic 'email' for a professional contact)."},"personalEmail":{"type":["boolean","null"],"description":"Set true when the user explicitly wants a personal email address."},"phone":{"type":["boolean","null"],"description":"Set true when the user wants a phone number for this person."}},"description":"Contact information the user requested for this person (work email, personal email, phone)."}}},"minItems":1,"maxItems":50,"description":"One or more people to look up. Each entry identifies a specific person by name, email, phone number, LinkedIn URL, company, and/or job title."}},"required":["queryType","persons"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["companyLookup"]},"companies":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Company name."},"domain":{"type":["string","null"],"description":"Company domain (e.g. 'acme.com')."},"linkedinUrl":{"type":["string","null"],"description":"Company LinkedIn URL."}}},"minItems":1,"description":"One or more companies to look up."}},"required":["queryType","companies"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["unprocessable"]}},"required":["queryType"]}],"description":"Structured parameters parsed from the query. Shape depends on the queryType discriminator."},"suggestedAction":{"type":"string","enum":["combinedSearch","companySearch","profileSearch","personLookup","companyLookup","none"],"description":"Recommended next step based on the parsed query. See endpoint description for which API to call."},"unsupportedFilters":{"type":["array","null"],"items":{"type":"string"},"description":"Parts of the query that could not be expressed as structured search filters."}},"required":["searchId","parsedParams","suggestedAction"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/nlp-search/run":{"post":{"operationId":"slushieRun","summary":"Natural language search","tags":["Agentic search"],"description":"Takes free-form text (e.g., 'Senior Product Managers at Series A FinTech startups in New York') and returns matching companies or people. The API determines the result type based on query interpretation — company-specific queries return companies, everything else returns people. Supports cursor-based pagination via a single pageToken.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Fixed costs per request (first page only):<br />• 2 credits for AI search interpretation<br /><br />Variable costs per result:<br />• 1 credits per company returned<br />• 1 credits per profile returned&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":["string","null"],"minLength":1,"maxLength":5000,"description":"Natural language search query. Required on the first request. Ignored when pageToken is provided."},"pageSize":{"type":"integer","minimum":1,"maximum":1000,"default":25,"description":"Number of results per page (1-1000). Applied to whichever result type is returned."},"companyExclusionListIDs":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"IDs of exclusion lists to filter out companies. Applied when returning companies, or to narrow company-based profile filtering."},"peopleExclusionListIDs":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"IDs of exclusion lists to filter out people."},"pageToken":{"type":["string","null"],"description":"Pagination token from a previous response. Pass the value of nextPageToken from the prior response."},"getDetailedEducation":{"type":["boolean","null"],"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it. Only applies when the result type is people; ignored for company results."},"getDetailedWorkExperience":{"type":["boolean","null"],"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it. Only applies when the result type is people; ignored for company results."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Fixed costs per request (first page only):\n• 2 credits for AI search interpretation\n\nVariable costs per result:\n• 1 credits per company returned\n• 1 credits per profile returned","variableCosts":[{"credits":2,"perUnit":"request","operation":"textToSearchParams"},{"credits":1,"perUnit":"result","operation":"getCompanyFromDb"},{"credits":1,"perUnit":"result","operation":"getPersonFromDb"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"searchId":{"type":"string","description":"Unique identifier for this search session. Stable across paginated requests — all pages share the same searchId."},"parsedParams":{"oneOf":[{"type":"object","properties":{"queryType":{"type":"string","enum":["structuredSearch"]},"companySearchParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Parsed company search filters. Null if query only targets people."},"profileSearchParams":{"type":["object","null"],"properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["operator","terms","negate"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}}},"required":["operator","clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"required":["getDetailedEducation","getDetailedWorkExperience"],"additionalProperties":false,"description":"Parsed people search filters. Null if query only targets companies.","default":{}}},"required":["queryType"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["personLookup"]},"persons":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Person's full name."},"email":{"type":["string","null"],"description":"Email address."},"phoneNumber":{"type":["string","null"],"description":"Phone number used to identify the person (reverse lookup), e.g. '+14155551234'. Present when the phone is the locator — not when the user only wants a phone revealed after finding someone by name."},"linkedinUrl":{"type":["string","null"],"description":"LinkedIn profile URL."},"companyName":{"type":["string","null"],"description":"Company the person works at."},"jobTitle":{"type":["string","null"],"description":"Job title."},"contactDetails":{"type":["object","null"],"properties":{"workEmail":{"type":["boolean","null"],"description":"Set true when the user wants this person's work email (e.g. 'work email', or generic 'email' for a professional contact)."},"personalEmail":{"type":["boolean","null"],"description":"Set true when the user explicitly wants a personal email address."},"phone":{"type":["boolean","null"],"description":"Set true when the user wants a phone number for this person."}},"description":"Contact information the user requested for this person (work email, personal email, phone)."}}},"minItems":1,"maxItems":50,"description":"One or more people to look up. Each entry identifies a specific person by name, email, phone number, LinkedIn URL, company, and/or job title."}},"required":["queryType","persons"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["companyLookup"]},"companies":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Company name."},"domain":{"type":["string","null"],"description":"Company domain (e.g. 'acme.com')."},"linkedinUrl":{"type":["string","null"],"description":"Company LinkedIn URL."}}},"minItems":1,"description":"One or more companies to look up."}},"required":["queryType","companies"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["unprocessable"]}},"required":["queryType"]},{"type":"null"}],"description":"Structured search parameters generated from the query. Shows how the natural language was interpreted."},"nextPageToken":{"type":["string","null"],"description":"Pass as pageToken in the next request for the next page. Null when there are no more results."},"unsupportedFilters":{"type":["array","null"],"items":{"type":"string"},"description":"Parts of the query that could not be expressed as structured search filters."},"autoLoosenings":{"type":["array","null"],"items":{"type":"string"},"description":"Filters that were automatically relaxed to find results when the original query returned 0. Only present on the first page."},"notices":{"type":["array","null"],"items":{"type":"string"},"description":"Informational notices about search results, e.g. when filters are too strict and produce zero matches."},"results":{"oneOf":[{"type":"object","properties":{"resultType":{"type":"string","description":"Indicates company results are returned.","enum":["companies"]},"companies":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}},"description":"Company results matching the search criteria."}},"required":["resultType","companies"]},{"type":"object","properties":{"resultType":{"type":"string","description":"Indicates people results are returned.","enum":["people"]},"people":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"emails":{"type":["array","null"],"items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string","enum":["work","personal","other","unknown","generic"]},"status":{"type":"string","enum":["valid","risky","unknown","invalid"]}},"required":["email","type"]},"description":"Revealed email addresses for this person. Only present when the query requested contact details."},"phoneNumbers":{"type":["array","null"],"items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string","enum":["mobile","other","unknown"]}},"required":["number","type"]},"description":"Revealed phone numbers for this person. Only present when the query requested contact details."}},"required":["primary_slug"]},"description":"People results matching the search criteria."}},"required":["resultType","people"]}],"description":"Search results. Discriminated on resultType — either companies or people are returned, never both."}},"required":["searchId","results"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/create":{"post":{"operationId":"createSavedSearch","summary":"Create saved search","tags":["Saved search"],"description":"Create a new saved search. Given search params, it automatically re-runs it periodically and tells you which new people and/or companies fit your parameters over time (and also who drops out or returns). You are charged for each new prospect or company we find, depending on your desired type. You can also manually run the saved search if you don't want to wait for the next auto-run.\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per prospect/company found in search&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","description":"The name of the saved search."},"searchParams":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","description":"The search type: combined companies and profiles.","enum":["combined"]},"companySearchParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"The company search parameters. Uses the same schema as the company search endpoint."},"maxNewCompaniesPerRun":{"type":"integer","exclusiveMinimum":0,"maximum":10000,"default":1000,"description":"Maximum number of new companies to charge for per run."},"profileSearchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"The profile search parameters. Uses the same schema as the profile search endpoint.","default":{}},"maxNewProfilesPerRun":{"type":"integer","exclusiveMinimum":0,"maximum":10000,"default":1000,"description":"Maximum number of new profiles to charge for per run."}},"required":["type","companySearchParams"],"description":"A combined company and profile search."},{"type":"object","properties":{"type":{"type":"string","description":"The search type: companies only.","enum":["companies"]},"companySearchParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"The company search parameters. Uses the same schema as the company search endpoint."},"maxNewCompaniesPerRun":{"type":"integer","exclusiveMinimum":0,"maximum":10000,"default":1000,"description":"Maximum number of new companies to charge for per run."}},"required":["type","companySearchParams"],"description":"A company-only search."},{"type":"object","properties":{"type":{"type":"string","description":"The search type: profiles only.","enum":["profiles"]},"profileSearchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"The profile search parameters. Uses the same schema as the profile search endpoint.","default":{}},"maxNewProfilesPerRun":{"type":"integer","exclusiveMinimum":0,"maximum":10000,"default":1000,"description":"Maximum number of new profiles to charge for per run."}},"required":["type"],"description":"A profile-only search."}]},"spawnFrequencyDays":{"type":"integer","minimum":7,"maximum":365,"description":"The frequency of the saved search in days."}},"required":["apiKey","name","searchParams","spawnFrequencyDays"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per prospect/company found in search","variableCosts":[{"credits":2,"perUnit":"prospect/company found in search","operation":"savedSearchProspect"}],"chargingMethod":"charging-later"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the saved search."}},"required":["id"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/get":{"post":{"operationId":"getSavedSearch","summary":"Get saved search","tags":["Saved search"],"description":"Get all details for a specific saved search\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchId":{"type":"string","description":"The ID of the saved search"}},"required":["apiKey","savedSearchId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the saved search"},"name":{"type":"string","description":"The name of the saved search"},"type":{"type":"string","enum":["combined","company_only","prospect_only"],"description":"The type of the saved search"},"spawnFrequencyDays":{"type":"integer","exclusiveMinimum":0,"description":"The frequency of the saved search in days."},"estimatedDateOfNextSpawn":{"type":["string","null"],"description":"The estimated date of the next spawn of the saved search"},"lastSpawnedAt":{"type":["string","null"],"description":"The date and time the last spawn of the saved search"},"pastSpawnsDates":{"type":["array","null"],"items":{"type":"string"},"maxItems":100,"description":"The dates of the past spawns (max 100) of the saved search"},"isActive":{"type":"boolean","description":"Whether the saved search is active i.e whether to auto spawn it or not."},"companySearchParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Search parameters for company search API."},"maxNewCompaniesPerRun":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of new companies to charge for per run."},"profileSearchParams":{"type":["object","null"],"properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["operator","terms","negate"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}}},"required":["operator","clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"required":["getDetailedEducation","getDetailedWorkExperience"],"additionalProperties":false,"description":"Search parameters for people search.","default":{}},"maxNewProfilesPerRun":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of new profiles to charge for per run."},"skipUntil":{"type":["string","null"],"description":"If set, the next auto-run is suppressed until this date. Null means no skip is active and auto-runs proceed on schedule."}},"required":["id","name","type","spawnFrequencyDays","isActive"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/run/get":{"post":{"operationId":"getSavedSearchRun","summary":"Get saved search run","tags":["Saved search"],"description":"Get all details for a specific saved search run\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchRunId":{"type":"string","description":"The ID of the saved search run"}},"required":["apiKey","savedSearchRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"run":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the saved search run"},"status":{"type":"string","enum":["NOT_STARTED","PROCESSING","COMPLETED","FAILED","REJECTED_NO_FUNDS"],"description":"The current status of the saved search run"},"startedAt":{"type":["string","null"],"description":"The date and time the run started"},"completedAt":{"type":["string","null"],"description":"The date and time the run completed (if completed)"},"executionMode":{"type":"string","enum":["manually_triggered","automatically_triggered"],"description":"The execution mode of the saved search run. How the saved search run was triggered (\"spawned\"): automatically via the saved search's frequency, or manually through your team's actions"},"companiesStats":{"type":"object","properties":{"numCompaniesJoined":{"type":"number","description":"The number of companies joined which means companies who appeared in the search results for the first time"},"numCompaniesDeparted":{"type":"number","description":"The number of companies departed which means companies who appeared in the search results previously and then disappeared in the latest search results"},"numCompaniesStayed":{"type":"number","description":"The number of companies stayed which means companies who appeared in the search results previously and then stayed in the latest search results"},"numCompaniesReturned":{"type":"number","description":"The number of companies returned which means companies who appeared in the search results previously but departed and then appeared again in the latest search results"}},"required":["numCompaniesJoined","numCompaniesDeparted","numCompaniesStayed","numCompaniesReturned"],"description":"The companies stats"},"peopleStats":{"type":"object","properties":{"numPeopleJoined":{"type":"number","description":"The number of people joined which means people who appeared in the search results for the first time"},"numPeopleDeparted":{"type":"number","description":"The number of people departed which means people who appeared in the search results previously and then disappeared in the latest search results"},"numPeopleReturned":{"type":"number","description":"The number of people returned which means people who appeared in the search results previously but departed and then appeared again in the latest search results"},"numPeopleStayed":{"type":"number","description":"The number of people stayed which means people who appeared in the search results previously and then stayed in the latest search results"}},"required":["numPeopleJoined","numPeopleDeparted","numPeopleReturned","numPeopleStayed"],"description":"The people stats"},"savedSearchId":{"type":"string","description":"The ID of the saved search"},"companySearchParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Search parameters for company search API."},"prospectSearchParams":{"type":["object","null"],"properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["operator","terms","negate"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}}},"required":["operator","clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"required":["getDetailedEducation","getDetailedWorkExperience"],"additionalProperties":false,"description":"Search parameters for people search.","default":{}}},"required":["id","status","executionMode","companiesStats","peopleStats","savedSearchId"],"description":"The saved search run details"}},"required":["run"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/spawn":{"post":{"operationId":"manuallySpawnSavedSearchRun","summary":"Manually spawn saved search run","tags":["Saved search"],"description":"Manually spawn a new saved search run\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per prospect/company found in search&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchId":{"type":"string","description":"The ID of the saved search"}},"required":["apiKey","savedSearchId"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per prospect/company found in search","variableCosts":[{"credits":2,"perUnit":"prospect/company found in search","operation":"savedSearchProspect"}],"chargingMethod":"charging-later"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the saved search run"},"startedAt":{"type":"string","description":"The date and time the saved search run started"}},"required":["id","startedAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/skip-next-run":{"post":{"operationId":"skipNextSavedSearchRun","summary":"Skip next saved search auto-run","tags":["Saved search"],"description":"Skip the next scheduled auto-run for a saved search. The search will resume its normal schedule after one skipped cycle. Manual runs are not affected.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchId":{"type":"string","minLength":1,"description":"The ID of the saved search to skip the next auto-run for"}},"required":["apiKey","savedSearchId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"The saved search ID"},"skipUntil":{"type":"string","description":"The date until which auto-runs are suppressed. After this date passes, the saved search resumes its normal schedule."}},"required":["id","skipUntil"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/undo-skip":{"post":{"operationId":"undoSkipNextSavedSearchRun","summary":"Undo skip next saved search auto-run","tags":["Saved search"],"description":"Undo a pending skip-next-run on a saved search. The auto-spawn cron will resume considering this search for automatic runs. Idempotent: calling this when no skip is active succeeds.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchId":{"type":"string","minLength":1,"description":"The ID of the saved search to undo the pending skip for"}},"required":["apiKey","savedSearchId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"The saved search ID"},"skipUndone":{"type":"boolean","description":"Confirms the skip has been undone","enum":[true]}},"required":["id","skipUndone"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/update":{"post":{"operationId":"updateSavedSearch","summary":"Update saved search","tags":["Saved search"],"description":"Update a saved search\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"id":{"type":"string","description":"The ID of the saved search."},"name":{"type":["string","null"],"description":"The name of the saved search. Omit to keep the current name."},"spawnFrequencyDays":{"type":["integer","null"],"minimum":7,"description":"The frequency of the saved search in days. Minimum is 7 days. Omit to keep the current frequency."},"companyParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["modality"]},"modality":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","modality","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"employeeTrendsV2":{"type":["object","null"],"properties":{"obeysAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysAny":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}},"obeysNone":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["percent_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["number","null"],"minimum":-1},"upperBound":{"type":["number","null"],"minimum":-1}}}},"required":["type","windowMonths","change"]},{"type":"object","properties":{"type":{"type":"string","enum":["numeric_change"]},"windowMonths":{"anyOf":[{"type":"number","enum":[1]},{"type":"number","enum":[2]},{"type":"number","enum":[3]},{"type":"number","enum":[6]},{"type":"number","enum":[12]},{"type":"number","enum":[18]},{"type":"number","enum":[24]},{"type":"number","enum":[36]}]},"change":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","windowMonths","change"]}]}}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"The company search parameters. Uses the same schema as the company search endpoint. Omit to keep the current parameters."},"profileParams":{"type":["object","null"],"properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"educationV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"fieldOfStudy":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"school":{"type":["object","null"],"properties":{"exact":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"nameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"properties":{"type":["object","null"],"properties":{"country":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}}}}}},"years":{"type":["object","null"],"properties":{"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"isHiring":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"isTopVoice":{"type":["boolean","null"]},"hasPremium":{"type":["boolean","null"]},"isInfluencer":{"type":["boolean","null"]},"industry":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Accounting","Administration of Justice","Advertising Services","Airlines and Aviation","Alternative Dispute Resolution","Alternative Medicine","Animation and Post-Production","Apparel and Fashion","Appliances, Electrical, and Electronics Manufacturing","Architecture and Planning","Armed Forces","Artists and Writers","Arts and Crafts","Automation Machinery Manufacturing","Automotive","Aviation and Aerospace Component Manufacturing","Banking","Beverage Manufacturing","Biotechnology","Book and Periodical Publishing","Broadcast Media","Building Materials","Business Consulting and Services","Business Supplies and Equipment","Capital Markets","Chemical Manufacturing","Civic and Social Organizations","Civil Engineering","Commercial Real Estate","Computer and Network Security","Computer Games","Computer Hardware","Computer Networking","Computers and Electronics Manufacturing","Computer Software","Construction","Consumer Electronics","Consumer Goods","Consumer Services","Cosmetics","Dairy Products","Defense and Space Manufacturing","Design","Education Management","E-Learning","Electrical and Electronic Manufacturing","Entertainment","Environmental Services","Events Services","Executive Offices","Facilities Services","Farming","Financial Services","Fine Art","Fisheries","Food and Beverage Manufacturing","Food and Beverage Services","Freight and Package Transportation","Fundraising","Furniture","Gambling Facilities and Casinos","Glass, Ceramics, and Concrete Manufacturing","Government Administration","Government Relations","Graphic Design","Health, Wellness, and Fitness","Higher Education","Horticulture","Hospitals and Health Care","Hospitality","Human Resources","Import and Export","Individual and Family Services","Industrial Automation","Industrial Machinery Manufacturing","Information Services","Information Technology and Services","Insurance","International Affairs","International Trade and Development","Internet","Investment Banking","Investment Management","IT Services and IT Consulting","Judiciary","Law Enforcement","Law Practices","Leasing Non-Residential Real Estate","Legal Services","Legislative Offices","Leisure, Travel, and Tourism","Libraries","Logistics and Supply Chain","Luxury Goods and Jewelry","Machinery Manufacturing","Management Consulting","Manufacturing","Maritime Transportation","Marketing and Advertising","Market Research","Mechanical or Industrial Engineering","Media Production","Medical Equipment Manufacturing","Medical Practices","Mental Health Care","Military","Mining","Mobile Games","Motion Pictures and Film","Motor Vehicle Manufacturing","Museums and Institutions","Music","Nanotechnology","Newspaper Publishing","Non-Profit Organizations","Oil and Gas","Online Media","Outsourcing and Offshoring Consulting","Packaging and Containers Manufacturing","Paper and Forest Product Manufacturing","Performing Arts","Personal Care Product Manufacturing","Pharmaceutical Manufacturing","Philanthropy","Photography","Plastics Manufacturing","Political Organizations","Primary and Secondary Education","Printing Services","Professional Training and Coaching","Program Development","Public Policy","Public Relations and Communications","Public Safety","Publishing","Railroad Equipment Manufacturing","Ranching","Real Estate","Recreational Facilities","Religious Institutions","Renewable Energy Semiconductor Manufacturing","Renewables and Environment","Research","Restaurants","Retail","Retail Apparel and Fashion","Retail Art Supplies","Retail Groceries","Retail Luxury Goods and Jewelry","Retail Office Equipment","Security and Investigations","Semiconductor Manufacturing","Shipbuilding","Software Development","Spectator Sports","Sporting Goods","Sports","Staffing and Recruiting","Strategic Management Services","Supermarkets","Technology, Information, and Internet","Telecommunications","Textile Manufacturing","Think Tanks","Tobacco Manufacturing","Translation and Localization","Transportation, Logistics, Supply Chain, and Storage","Transportation, Trucking, and Railroad","Travel Arrangements","Truck Transportation","Utilities","Venture Capital and Private Equity","Veterinary","Warehousing and Storage","Wellness and Fitness Services","Wholesale","Wholesale Building Materials","Wholesale Import and Export","Wine and Spirits","Wireless","Writing and Editing"]}}}},"isVerified":{"type":["boolean","null"]},"joinedLinkedInAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"unemployment":{"type":["object","null"],"properties":{"isUnemployed":{"type":"boolean"},"becameUnemployedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["isUnemployed"]},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"jobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Match a person who satisfies any of these entries."},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Require every entry to be satisfied by the same person. Each entry can be at a different company and tenure."},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'openai')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '11130470')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'openai.com')."}},"required":["identifier","value"]},{"type":"null"}],"description":"Company to match. Identify by LinkedIn org ID, LinkedIn URL, LinkedIn slug, or website domain."},"jobTitle":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"status":{"type":"string","enum":["current","past","any"]}},"required":["status"]},"description":"Exclude any person who satisfies these entries. Naming the same company in both anyOf and noneOf excludes anyone who held the excluded-tenure role there."}},"description":"Filter by work experience: named companies (LinkedIn org ID, URL, slug, or domain), job titles, or both on the same entry, with per-entry tenure. Replaces the deprecated pastJobs and currentJobs fields. Prefer jobs alone during migration — sending jobs together with pastJobs or currentJobs ANDs them as separate query clauses."},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'past' instead.","deprecated":true},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}},"description":"Deprecated. Use jobs with status: 'current' instead.","deprecated":true},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"The profile search parameters. Uses the same schema as the profile search endpoint. Omit to keep the current parameters.","default":{}},"isActive":{"type":["boolean","null"],"description":"Whether the saved search is active. Omit to keep the current status."}},"required":["apiKey","id"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"success":{"type":"boolean","description":"Whether the update was successful."},"id":{"type":"string","description":"The ID of the saved search."},"name":{"type":"string","description":"The name of the saved search."},"spawnFrequencyDays":{"type":"integer","minimum":7,"description":"The frequency of the saved search in days. Minimum is 7 days."},"isActive":{"type":"boolean","description":"Whether the saved search is active."}},"required":["success","id","name","spawnFrequencyDays","isActive"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/run/list":{"post":{"operationId":"listSavedSearchRuns","summary":"List saved search runs","tags":["Saved search"],"description":"List saved search runs\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchId":{"type":"string","description":"The ID of the saved search. Use /saved-search/list to get the ID of a saved search."},"cursor":{"type":["string","null"],"description":"The cursor to start from. You can pass null to get the first page of results."},"pageSize":{"type":"integer","minimum":1,"maximum":100,"default":100,"description":"The number of runs to return"}},"required":["apiKey","savedSearchId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"runs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the saved search run"},"status":{"type":"string","description":"The status of the saved search run"},"startedAt":{"type":["string","null"],"description":"The date and time the saved search run started"},"completedAt":{"type":["string","null"],"description":"The date and time the saved search run completed (if completed)"},"executionMode":{"type":"string","enum":["manually_triggered","automatically_triggered"],"description":"The execution mode of the saved search run. How the saved search run was triggered (\"spawned\"): automatically via the saved search's frequency, or manually through your team's actions"}},"required":["id","status","executionMode"]},"description":"The runs of the saved search"},"nextCursor":{"type":["string","null"],"description":"The next cursor. You can call this endpoint again with this cursor to get the next page of results. If null, there are no more results."}},"required":["runs"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/list":{"post":{"operationId":"listSavedSearch","summary":"List saved searches","tags":["Saved search"],"description":"List saved searches\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"cursor":{"type":["string","null"],"description":"The pagination cursor to continue from a previous response."},"pageSize":{"type":"integer","minimum":1,"maximum":100,"default":100,"description":"The number of saved searches to return per page."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"savedSearches":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the saved search."},"name":{"type":"string","description":"The name of the saved search."}},"required":["id","name"]},"description":"The list of saved searches."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page. Null if there are no more results."}},"required":["savedSearches"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/run/status":{"post":{"operationId":"getSavedSearchRunStatus","summary":"Get saved search run status","tags":["Saved search"],"description":"Returns the execution status and metadata for a saved search run, including start time, completion time (if finished), and current status (NOT_STARTED, PROCESSING, COMPLETED, or FAILED)\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchRunId":{"type":"string","description":"The ID of the saved search run"}},"required":["apiKey","savedSearchRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"run":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the saved search run"},"startedAt":{"type":["string","null"],"description":"The date and time the run started (if started)"},"completedAt":{"type":["string","null"],"description":"The date and time the run completed (if completed)"},"status":{"type":"string","enum":["NOT_STARTED","PROCESSING","COMPLETED","FAILED","REJECTED_NO_FUNDS"],"description":"The status of the saved search run"},"companiesStats":{"type":"object","properties":{"numCompaniesJoined":{"type":"number","description":"The number of companies joined which means companies who appeared in the search results for the first time"},"numCompaniesDeparted":{"type":"number","description":"The number of companies departed which means companies who appeared in the search results previously and then disappeared in the latest search results"},"numCompaniesStayed":{"type":"number","description":"The number of companies stayed which means companies who appeared in the search results previously and then stayed in the latest search results"},"numCompaniesReturned":{"type":"number","description":"The number of companies returned which means companies who appeared in the search results previously but departed and then appeared again in the latest search results"}},"required":["numCompaniesJoined","numCompaniesDeparted","numCompaniesStayed","numCompaniesReturned"],"description":"The companies stats. This includes the number of companies joined, departed, stayed, and returned so far."},"peopleStats":{"type":"object","properties":{"numPeopleJoined":{"type":"number","description":"The number of people joined which means people who appeared in the search results for the first time"},"numPeopleDeparted":{"type":"number","description":"The number of people departed which means people who appeared in the search results previously and then disappeared in the latest search results"},"numPeopleReturned":{"type":"number","description":"The number of people returned which means people who appeared in the search results previously but departed and then appeared again in the latest search results"},"numPeopleStayed":{"type":"number","description":"The number of people stayed which means people who appeared in the search results previously and then stayed in the latest search results"}},"required":["numPeopleJoined","numPeopleDeparted","numPeopleReturned","numPeopleStayed"],"description":"The people stats. This includes the number of people joined, departed, stayed, and returned so far."}},"required":["id","status","companiesStats","peopleStats"],"description":"The saved search run details"}},"required":["run"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/current/profiles":{"post":{"operationId":"getCurrentProfilesInSavedSearch","summary":"Get current profiles in saved search","tags":["Saved search"],"description":"Get current profiles found for a specific saved search\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchId":{"type":"string","description":"The ID of the saved search"},"statuses":{"type":["array","null"],"items":{"type":"string","enum":["joined","returned","departed","stayed"]},"minItems":1,"description":"The statuses of the profiles. This is optional and if not provided, all current profiles will be returned."},"cursor":{"type":["string","null"],"description":"The cursor to start from"},"pageSize":{"type":"integer","minimum":1,"maximum":100,"default":25,"description":"The number of profiles to return"}},"required":["apiKey","savedSearchId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profiles":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"description":"The profiles found for the saved search by movement type"},"nextCursor":{"type":["string","null"],"description":"The next cursor"},"lastRunCompletedAt":{"type":["string","null"],"description":"The date and time the last run completed"}},"required":["profiles"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/current/companies":{"post":{"operationId":"getCurrentCompaniesInSavedSearch","summary":"Get current companies in saved search","tags":["Saved search"],"description":"Get current companies found for a specific saved search\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchId":{"type":"string","description":"The ID of the saved search"},"statuses":{"type":["array","null"],"items":{"type":"string","enum":["joined","returned","departed","stayed"]},"minItems":1,"description":"The statuses of the companies. This is optional and if not provided, all current companies will be returned."},"cursor":{"type":["string","null"],"description":"The cursor to start from"},"pageSize":{"type":"integer","minimum":1,"maximum":100,"default":25,"description":"The number of companies to return"}},"required":["apiKey","savedSearchId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"companies":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}},"description":"The companies that currently match the saved search, as of the latest run."},"nextCursor":{"type":["string","null"],"description":"The next cursor"},"lastRunCompletedAt":{"type":["string","null"],"description":"The date and time the last run completed"}},"required":["companies"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/run/profiles":{"post":{"operationId":"getSavedSearchRunProfiles","summary":"Get saved search run profiles","tags":["Saved search"],"description":"Get the profiles found for a specific saved search run\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchRunId":{"type":"string","description":"The ID of the saved search run"},"statuses":{"type":["array","null"],"items":{"type":"string","enum":["joined","returned","departed","stayed"]},"minItems":1,"description":"The statuses of the profiles. This is optional and if not provided, all profiles will be returned."},"cursor":{"type":["string","null"],"description":"The cursor to start from"},"pageSize":{"type":"integer","minimum":1,"maximum":100,"default":25,"description":"The number of profiles to return"}},"required":["apiKey","savedSearchRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profiles":{"type":"array","items":{"type":"object","properties":{"profile":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"is_top_voice":{"type":["boolean","null"]},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"last_updated_at":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"logo_url":{"type":["string","null"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"li_industries":{"type":["array","null"],"items":{"type":"string"}}}},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"movementType":{"type":"string","enum":["joined","returned","departed","stayed"]}},"required":["profile","movementType"]},"description":"The profiles found for the saved search run"},"nextCursor":{"type":["string","null"],"description":"The next cursor"}},"required":["profiles"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/run/companies":{"post":{"operationId":"getSavedSearchRunCompanies","summary":"Get saved search run companies","tags":["Saved search"],"description":"Get the companies found for a specific saved search run\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchRunId":{"type":"string","description":"The ID of the saved search run"},"statuses":{"type":["array","null"],"items":{"type":"string","enum":["joined","returned","departed","stayed"]},"minItems":1,"description":"The statuses of the companies. This is optional and if not provided, all companies will be returned."},"cursor":{"type":["string","null"],"description":"The cursor to start from"},"pageSize":{"type":"integer","minimum":1,"maximum":100,"default":25,"description":"The number of companies to return"}},"required":["apiKey","savedSearchRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"companies":{"type":"array","items":{"type":"object","properties":{"company":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}},"movementType":{"type":"string","enum":["joined","returned","departed","stayed"]}},"required":["company","movementType"]},"description":"The companies found for the saved search run"},"nextCursor":{"type":["string","null"],"description":"The next cursor"}},"required":["companies"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"},"advice":{"type":["array","null"],"items":{"type":"string"},"description":"Tips, recommendations, and suggestions for using this API effectively."}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"422":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/saved-search/run/get-latest":{"post":{"operationId":"getLatestSavedSearchRun","summary":"Get latest saved search run","tags":["Saved search"],"description":"Get the latest saved search run for a specific saved search\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"savedSearchId":{"type":"string","description":"The ID of the saved search"}},"required":["apiKey","savedSearchId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"run":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the saved search run"},"status":{"type":"string","enum":["NOT_STARTED","PROCESSING","COMPLETED","FAILED","REJECTED_NO_FUNDS"],"description":"The current status of the saved search run"},"startedAt":{"type":["string","null"],"description":"The date and time the run started"},"completedAt":{"type":["string","null"],"description":"The date and time the run completed (if completed)"},"executionMode":{"type":"string","enum":["manually_triggered","automatically_triggered"],"description":"The execution mode of the saved search run. How the saved search run was triggered (\"spawned\"): automatically via the saved search's frequency, or manually through your team's actions"},"companiesStats":{"type":"object","properties":{"numCompaniesJoined":{"type":"number","description":"The number of companies joined which means companies who appeared in the search results for the first time"},"numCompaniesDeparted":{"type":"number","description":"The number of companies departed which means companies who appeared in the search results previously and then disappeared in the latest search results"},"numCompaniesStayed":{"type":"number","description":"The number of companies stayed which means companies who appeared in the search results previously and then stayed in the latest search results"},"numCompaniesReturned":{"type":"number","description":"The number of companies returned which means companies who appeared in the search results previously but departed and then appeared again in the latest search results"}},"required":["numCompaniesJoined","numCompaniesDeparted","numCompaniesStayed","numCompaniesReturned"],"description":"The companies stats"},"peopleStats":{"type":"object","properties":{"numPeopleJoined":{"type":"number","description":"The number of people joined which means people who appeared in the search results for the first time"},"numPeopleDeparted":{"type":"number","description":"The number of people departed which means people who appeared in the search results previously and then disappeared in the latest search results"},"numPeopleReturned":{"type":"number","description":"The number of people returned which means people who appeared in the search results previously but departed and then appeared again in the latest search results"},"numPeopleStayed":{"type":"number","description":"The number of people stayed which means people who appeared in the search results previously and then stayed in the latest search results"}},"required":["numPeopleJoined","numPeopleDeparted","numPeopleReturned","numPeopleStayed"],"description":"The people stats"},"savedSearchId":{"type":"string","description":"The ID of the saved search"},"companySearchParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"type":["integer","null"],"minimum":0},"upperBoundInclusive":{"type":["integer","null"],"minimum":0}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa","forbes-global-2000"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}},"jobModality":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","Z