{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://doc.g3nretailstack.com/common/schemas/envelope.schema.json",
  "title": "Envelope",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "success": { "type": "boolean" },
    "data": {},
    "error": { "$ref": "error.schema.json" },
    "stats": { "$ref": "stats.schema.json" },
    "revision": { "type": "string" }
  },
  "required": ["success"]
}
