Hyperbrowser · Schema

Hyperbrowser Crawl Job

JSON Schema for the Hyperbrowser Hyperbrowser Crawl Job resource extracted from the official OpenAPI spec.

Headless BrowserBrowser InfrastructureWeb ScrapingWeb CrawlingData ExtractionAI AgentsBrowser AutomationComputer UseStealthProxiesCAPTCHA SolvingMCPHyperAgentX402

Properties

Name Type Description
status object
View JSON Schema on GitHub

JSON Schema

hyperbrowser-crawl-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hyperbrowser/main/json-schema/hyperbrowser-crawl-job-schema.json",
  "title": "Hyperbrowser Crawl Job",
  "description": "JSON Schema for the Hyperbrowser Hyperbrowser Crawl Job resource extracted from the official OpenAPI spec.",
  "type": "object",
  "properties": {
    "status": {
      "$ref": "#/$defs/JobStatus"
    }
  },
  "required": [
    "status"
  ],
  "$defs": {
    "JobStatus": {
      "type": "string",
      "enum": [
        "pending",
        "running",
        "completed",
        "failed",
        "stopped"
      ]
    }
  }
}