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