-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
As a user of the scl-diff I want to describe the SCL element IED
** Requirements
- export object
IEDDescription
type KDCDescription = {
/** IED attribute iedName */
iedName: string;
/** IED attribute apName */
apName: string;
}
export interface IEDDescription extends NamingDescription {
/** IED attribute type */
type?: string;
/** IED attribute manufacturer */
manufacturer?: string;
/** IED attribute configVersion */
configVersion?: string;
/** IED attribute originalSclVersion defaulting 2003*/
originalSclVersion: number;
/** IED attribute originalSclRevision defaulting "A"*/
originalSclRevision: string;
/** IED attribute originalSclRelease defaulting 1*/
originalSclRelease: number;
/** IED attribute engRight defaulting "full" */
engRight: string;
/** IED attribute owner */
owner?: string;
/** IED child Services */
services?: ServicesDescription;
/** IED children AccessPoint */
accessPoints: Record<string, AccessPointDescription>;
/** IED children KDC */
kDCs: Record<string, KDCDescription>;
}Metadata
Metadata
Assignees
Labels
No labels