Interface EcosystemCreateStartEvent
interface EcosystemCreateStartEvent { category: "ecosystem"; data: { integrations: undefined | ({ enabled: boolean; format: "VICAL"; rootCertificatePems: string[]; url: string; } | { enabled: boolean; format: "MATTR"; url: string; })[]; name: string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface EcosystemCreateStartEventSanitised { category: "ecosystem"; data: { integrations: undefined | ({ enabled: boolean; format: "VICAL"; rootCertificatePems: string[]; url: string; } | { enabled: boolean; format: "MATTR"; url: string; })[]; name: string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "ecosystem"
Sanitisation Level DATA
data
data: {
integrations: undefined | ({
enabled: boolean;
format: "VICAL";
rootCertificatePems: string[];
url: string;
} | {
enabled: boolean;
format: "MATTR";
url: string;
})[];
name: string;
}
Type declaration
integrations: undefined | ({
enabled: boolean;
format: "VICAL";
rootCertificatePems: string[];
url: string;
} | {
enabled: boolean;
format: "MATTR";
url: string;
})[]
name: string
requestId
requestId: string
timestamp
timestamp: number