Interface EcosystemValidateParticipantFailEvent
interface EcosystemValidateParticipantFailEvent { category: "ecosystem"; data: { error: { message: string; type: string; }; } | { failReasons: { message: string; type: string; }[]; identifier: undefined | string; policyVersion: undefined | string; validated: false; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface EcosystemValidateParticipantFailEventSanitised { category: "ecosystem"; data: { error: { message: string; type: string; }; } | { failReasons: { message: string; type: string; }[]; identifier: undefined | string; policyVersion: undefined | string; validated: false; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "ecosystem"
Sanitisation Level DATA
data
data: {
error: {
message: string;
type: string;
};
} | {
failReasons: {
message: string;
type: string;
}[];
identifier: undefined | string;
policyVersion: undefined | string;
validated: false;
}
Type declaration
error: {
message: string;
type: string;
}
message: string
type: string
Type declaration
failReasons: {
message: string;
type: string;
}[]
identifier: undefined | string
policyVersion: undefined | string
validated: false
requestId
requestId: string
timestamp
timestamp: number