{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://doc.g3nretailstack.com/common/schemas/error.schema.json",
  "title": "ErrorEnvelope",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "error_code": { "type": "string" },
    "http_status": { "type": "integer" },
    "retryable": { "type": "boolean" },
    "request_id": { "type": "string" },
    "trace_id": { "type": "string" },
    "major": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "tag": { "type": "string" },
        "message": {
          "type": "object",
          "additionalProperties": true,
          "properties": {
            "en_US": { "type": "string" }
          },
          "required": ["en_US"]
        }
      },
      "required": ["tag", "message"]
    },
    "minor": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "tag": { "type": "string" },
        "message": {
          "type": "object",
          "additionalProperties": true,
          "properties": {
            "en_US": { "type": "string" }
          },
          "required": ["en_US"]
        }
      },
      "required": ["tag", "message"]
    },
    "details": {}
  },
  "required": ["major"]
}
