42Crunch · JSON Structure

Scand Manager Job Status Structure

Current status of a conformance scan job

Type: object Properties: 2 Required: 2
API SecurityPlatformScanningSecurityOpenAPIDevSecOps

JobStatus is a JSON Structure definition published by 42Crunch, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name status

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-job-status-structure.json",
  "name": "JobStatus",
  "description": "Current status of a conformance scan job",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/JobName"
    },
    "status": {
      "type": "string",
      "description": "Current lifecycle status of the job",
      "enum": [
        "started",
        "active",
        "succeeded",
        "failed",
        "unknown",
        "deleted"
      ],
      "example": "active"
    }
  },
  "additionalProperties": false,
  "required": [
    "name",
    "status"
  ]
}