42Crunch · JSON Structure

Scand Manager Jobs Structure

Collection of all scan jobs

Type: object Properties: 1
API SecurityPlatformScanningSecurityOpenAPIDevSecOps

Jobs is a JSON Structure definition published by 42Crunch, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

jobs

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/42crunch/refs/heads/main/json-structure/scand-manager-jobs-structure.json",
  "name": "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
}