42Crunch · Schema

Jobs

Collection of all scan jobs

API SecurityPlatformScanningSecurityOpenAPIDevSecOps

Properties

Name Type Description
jobs array List of all scan job statuses
View JSON Schema on GitHub

JSON Schema

scand-manager-jobs-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/42crunch/refs/heads/main/json-schema/scand-manager-jobs-schema.json",
  "title": "Jobs",
  "description": "Collection of all scan jobs",
  "type": "object",
  "properties": {
    "jobs": {
      "type": "array",
      "description": "List of all scan job statuses",
      "items": {
        "$ref": "#/components/schemas/JobStatus"
      },
      "maxItems": 1024,
      "example": [
        {
          "name": "scand-48340c78-a76c-475f-aa4a-36fc834b3c02",
          "status": "active"
        }
      ]
    }
  },
  "additionalProperties": false
}