We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a user of the scl-diff I want to describe the SCL element IED
scl-diff
IED
** Requirements
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>; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As a user of the
scl-diff
I want to describe the SCL elementIED
** Requirements
IEDDescription
The text was updated successfully, but these errors were encountered: