Censys · Schema

CenseyeJobsListResponse

CenseyeJobsListResponse schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
jobs arraynull List of CensEye jobs.
next_page_token string Token to retrieve the next page of jobs.
View JSON Schema on GitHub

JSON Schema

platform-censeyejobslistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-censeyejobslistresponse-schema.json",
  "title": "CenseyeJobsListResponse",
  "description": "CenseyeJobsListResponse schema from Censys Platform API",
  "type": "object",
  "properties": {
    "jobs": {
      "description": "List of CensEye jobs.",
      "items": {
        "$ref": "#/components/schemas/CenseyeJob"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "next_page_token": {
      "description": "Token to retrieve the next page of jobs.",
      "type": "string"
    }
  },
  "required": [
    "jobs"
  ],
  "additionalProperties": false
}