42Crunch · Schema

Error

Error response from the API

API SecurityPlatformScanningSecurityOpenAPIDevSecOps

Properties

Name Type Description
error string Human-readable error message
View JSON Schema on GitHub

JSON Schema

scand-manager-error-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-error-schema.json",
  "title": "Error",
  "description": "Error response from the API",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "Human-readable error message",
      "maxLength": 1024,
      "minLength": 1,
      "pattern": "^\\P{Cc}+$",
      "example": "Job not found"
    }
  },
  "additionalProperties": false,
  "required": [
    "error"
  ]
}