{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://ravenstrike.local/schemas/error.schema.json",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "status": { "type": "string", "enum": ["ERROR", "INSUFFICIENT_DATA", "INSUFFICIENT_PUBLIC_DATA"] },
    "error_code": { "type": "string", "enum": ["SCHEMA_VALIDATION_FAILED", "UNSUPPORTED_PLATFORM", "MISSING_TELEMETRY", "AMBIGUOUS_INTENT", "MODULE_NOT_IMPLEMENTED"] },
    "message": { "type": "string", "minLength": 1 },
    "details": { "type": "array", "items": { "type": "string" } },
    "next_action": { "type": "string", "minLength": 1 }
  },
  "required": ["status", "error_code", "message", "details", "next_action"]
}
