Skip to content
New issue

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

describe IED #49

Open
JakobVogelsang opened this issue Feb 3, 2024 · 0 comments
Open

describe IED #49

JakobVogelsang opened this issue Feb 3, 2024 · 0 comments

Comments

@JakobVogelsang
Copy link
Contributor

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>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant