Variable $ErrorConst

$Error: {
    additionalProperties: false;
    description: "Details about mint error";
    properties: {
        code: {
            example: 419;
            type: "number";
        };
        message: {
            example: "Internal error on Cometh side";
            type: "string";
        };
        scope: {
            enum: readonly ["vendor", "psp", "cometh"];
            type: "string";
        };
    };
    readOnly: true;
    type: "object";
} = ...